Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BackEnd-V2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joel Andres Molina Velez
BackEnd-V2
Commits
d379090f
Commit
d379090f
authored
Jul 27, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se corrigen las excepciones de ServiceUzyTPlanificacion
parent
d2a162e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
ServiceUzyTPlanificacion.java
...S/Service/UzyTPlanificacion/ServiceUzyTPlanificacion.java
+6
-5
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTPlanificacion/ServiceUzyTPlanificacion.java
View file @
d379090f
...
@@ -49,9 +49,6 @@ public class ServiceUzyTPlanificacion implements IServiceUzyTPlanificacion {
...
@@ -49,9 +49,6 @@ public class ServiceUzyTPlanificacion implements IServiceUzyTPlanificacion {
@Override
@Override
public
DtoUzyTPlanificacion
guardar
(
DtoUzyTPlanificacion
dtoUzyTPlanificacion
)
{
public
DtoUzyTPlanificacion
guardar
(
DtoUzyTPlanificacion
dtoUzyTPlanificacion
)
{
if
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre
()
==
null
)
{
throw
new
IllegalArgumentException
(
"El nombre de la planificación no puede ser nulo."
);
}
try
{
try
{
ModelUzyTPlanificacion
entity
=
mapper
.
dtoToEntity
(
dtoUzyTPlanificacion
);
ModelUzyTPlanificacion
entity
=
mapper
.
dtoToEntity
(
dtoUzyTPlanificacion
);
ModelUzyTPlanificacion
nuevoEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
ModelUzyTPlanificacion
nuevoEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
...
@@ -70,8 +67,12 @@ public class ServiceUzyTPlanificacion implements IServiceUzyTPlanificacion {
...
@@ -70,8 +67,12 @@ public class ServiceUzyTPlanificacion implements IServiceUzyTPlanificacion {
try
{
try
{
ModelUzyTPlanificacion
entity
=
daoUzyTPlanificacion
.
findById
(
id
)
ModelUzyTPlanificacion
entity
=
daoUzyTPlanificacion
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
entity
.
setUzytplanificacionNombre
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre
());
if
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre
()
!=
null
){
entity
.
setUzytplanificacionNombreLargo
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre_largo
());
entity
.
setUzytplanificacionNombre
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre
());
}
if
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre_largo
()
!=
null
){
entity
.
setUzytplanificacionNombreLargo
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre_largo
());
}
ModelUzyTPlanificacion
updatedEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
ModelUzyTPlanificacion
updatedEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
return
mapper
.
entityToDto
(
updatedEntity
);
return
mapper
.
entityToDto
(
updatedEntity
);
}
catch
(
ResourceNotFoundException
ex
)
{
}
catch
(
ResourceNotFoundException
ex
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment