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
c56b552e
Commit
c56b552e
authored
Jul 23, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se agrega una api en ServiceUzyTavPresup para obtenerTavPresupPorProyecID
parent
c0b8259e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
0 deletions
+20
-0
UzyTavPresupController.java
...ilidad/MovilidadWS/Controller/UzyTavPresupController.java
+5
-0
DaoUzyTavPresup.java
...c/edu/espe/movilidad/MovilidadWS/Dao/DaoUzyTavPresup.java
+7
-0
IServiceUzyTavPresup.java
...ovilidadWS/Service/UzyTavPresup/IServiceUzyTavPresup.java
+2
-0
ServiceUzyTavPresup.java
...MovilidadWS/Service/UzyTavPresup/ServiceUzyTavPresup.java
+6
-0
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTavPresupController.java
View file @
c56b552e
...
...
@@ -30,6 +30,11 @@ public class UzyTavPresupController {
return
new
ResponseEntity
<>(
serviceUzyTavPresup
.
ListarRegistros
(),
HttpStatus
.
OK
);
}
@GetMapping
(
"/obtenerTavPresupPorProyecID/{proyecID}"
)
public
ResponseEntity
<
List
<
DtoUzyTavPresup
>>
obtenerTavPresupPorProyecID
(
@PathVariable
Long
proyecID
)
{
return
new
ResponseEntity
<>(
serviceUzyTavPresup
.
obtenerTavPresupPorProyecID
(
proyecID
),
HttpStatus
.
OK
);
}
@PostMapping
(
"/guardar"
)
public
ResponseEntity
<
DtoUzyTavPresup
>
guardar
(
@RequestBody
DtoUzyTavPresup
dtoUzyTavPresup
)
{
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Dao/DaoUzyTavPresup.java
View file @
c56b552e
...
...
@@ -2,8 +2,15 @@ package ec.edu.espe.movilidad.MovilidadWS.Dao;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTavPresup
;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
org.springframework.data.jpa.repository.Query
;
import
org.springframework.data.repository.query.Param
;
import
org.springframework.stereotype.Repository
;
import
java.util.List
;
@Repository
public
interface
DaoUzyTavPresup
extends
JpaRepository
<
ModelUzyTavPresup
,
Long
>
{
@Query
(
"SELECT tp FROM ModelUzyTavPresup tp JOIN tp.uzytavproyec p WHERE p.uzytavproyec_id = :proyecID"
)
List
<
ModelUzyTavPresup
>
obtenerTavPresupPorProyecID
(
@Param
(
"proyecID"
)
Long
proyecID
);
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavPresup/IServiceUzyTavPresup.java
View file @
c56b552e
...
...
@@ -10,6 +10,8 @@ public interface IServiceUzyTavPresup {
List
<
DtoUzyTavPresup
>
ListarRegistros
();
List
<
DtoUzyTavPresup
>
obtenerTavPresupPorProyecID
(
Long
proyecID
);
DtoUzyTavPresup
guardar
(
DtoUzyTavPresup
dtoUzyTavPresup
);
DtoUzyTavPresup
editar
(
Long
id
,
DtoUzyTavPresup
dtoUzyTavPresup
);
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavPresup/ServiceUzyTavPresup.java
View file @
c56b552e
...
...
@@ -34,6 +34,12 @@ public class ServiceUzyTavPresup implements IServiceUzyTavPresup {
return
mapper
.
entitiesToDtos
(
entities
);
}
@Override
public
List
<
DtoUzyTavPresup
>
obtenerTavPresupPorProyecID
(
Long
proyecID
)
{
List
<
ModelUzyTavPresup
>
entities
=
daoUzyTavPresup
.
obtenerTavPresupPorProyecID
(
proyecID
);
return
mapper
.
entitiesToDtos
(
entities
);
}
@Override
public
DtoUzyTavPresup
guardar
(
DtoUzyTavPresup
dtoUzyTavPresup
)
{
ModelUzyTavPresup
entity
=
mapper
.
dtoToEntity
(
dtoUzyTavPresup
);
...
...
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