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
11c3ca61
Commit
11c3ca61
authored
Jul 14, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se agrega una consula para la tabla anexos, para así buscar los registros por el id de proyecto
parent
40bc6c1f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
3 deletions
+25
-3
UzyTavAnexoSPRController.java
...idad/MovilidadWS/Controller/UzyTavAnexoSPRController.java
+6
-1
DaoUzyTavAnexoSPR.java
...edu/espe/movilidad/MovilidadWS/Dao/DaoUzyTavAnexoSPR.java
+9
-0
IServiceUzyTavAnexoSPR.java
...idadWS/Service/UzyTavAnexoSPR/IServiceUzyTavAnexoSPR.java
+3
-1
ServiceUzyTavAnexoSPR.java
...lidadWS/Service/UzyTavAnexoSPR/ServiceUzyTavAnexoSPR.java
+7
-1
38_MuestraPDF (1).pdf
uploadsPDF/38_MuestraPDF (1).pdf
+0
-0
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTavAnexoSPRController.java
View file @
11c3ca61
...
...
@@ -13,7 +13,6 @@ import org.springframework.web.multipart.MultipartFile;
import
java.io.IOException
;
import
java.util.List
;
import
java.util.NoSuchElementException
;
@RestController
@CrossOrigin
(
origins
=
"*"
)
@RequestMapping
(
V1_API_VERSION
+
"/anexos"
)
...
...
@@ -51,6 +50,12 @@ public class UzyTavAnexoSPRController {
}
}
@GetMapping
(
"/ListarRegistrosPorProyecID/{proyecID}"
)
public
ResponseEntity
<
List
<
DtoUzyTavAnexoSPR
>>
ListarRegistrosPorProyecID
(
@PathVariable
(
"proyecID"
)
Long
proyecID
)
{
List
<
DtoUzyTavAnexoSPR
>
dtos
=
serviceUzyTavAnexoSPR
.
ListarRegistrosPorProyecID
(
proyecID
);
return
ResponseEntity
.
ok
(
dtos
);
}
@GetMapping
(
"/getAll"
)
public
ResponseEntity
<
List
<
DtoUzyTavAnexoSPR
>>
listarRegistros
()
{
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Dao/DaoUzyTavAnexoSPR.java
View file @
11c3ca61
...
...
@@ -2,8 +2,16 @@ package ec.edu.espe.movilidad.MovilidadWS.Dao;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTavAnexoSPR
;
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
DaoUzyTavAnexoSPR
extends
JpaRepository
<
ModelUzyTavAnexoSPR
,
Long
>
{
@Query
(
"SELECT a FROM ModelUzyTavAnexoSPR a WHERE a.uzytavproyec.uzytavproyec_id = :proyecID"
)
List
<
ModelUzyTavAnexoSPR
>
findByProyecID
(
@Param
(
"proyecID"
)
Long
proyecID
);
}
\ No newline at end of file
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavAnexoSPR/IServiceUzyTavAnexoSPR.java
View file @
11c3ca61
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTavAnexoSPR
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavAnexoSPR
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavConvoca
;
import
java.io.IOException
;
import
java.util.List
;
...
...
@@ -12,6 +12,8 @@ public interface IServiceUzyTavAnexoSPR {
List
<
DtoUzyTavAnexoSPR
>
ListarRegistros
();
List
<
DtoUzyTavAnexoSPR
>
ListarRegistrosPorProyecID
(
Long
proyecID
);
DtoUzyTavAnexoSPR
save
(
DtoUzyTavAnexoSPR
dtoUzyTavAnexoSPR
)
throws
IOException
;
DtoUzyTavAnexoSPR
edit
(
Long
uzytavanexospr_id
,
DtoUzyTavAnexoSPR
dtoUzyTavAnexoSPR
)
throws
IOException
;
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavAnexoSPR/ServiceUzyTavAnexoSPR.java
View file @
11c3ca61
...
...
@@ -48,6 +48,12 @@ public class ServiceUzyTavAnexoSPR implements IServiceUzyTavAnexoSPR{
return
mapper
.
entitiesToDtos
(
entities
);
}
@Override
public
List
<
DtoUzyTavAnexoSPR
>
ListarRegistrosPorProyecID
(
Long
proyecID
)
{
List
<
ModelUzyTavAnexoSPR
>
entities
=
daoUzyTavAnexoSPR
.
findByProyecID
(
proyecID
);
return
mapper
.
entitiesToDtos
(
entities
);
}
@Override
public
DtoUzyTavAnexoSPR
save
(
DtoUzyTavAnexoSPR
dtoUzyTavAnexoSPR
)
throws
IOException
{
MultipartFile
file
=
dtoUzyTavAnexoSPR
.
getUzytavanexospr_digital
();
...
...
@@ -83,7 +89,7 @@ public class ServiceUzyTavAnexoSPR implements IServiceUzyTavAnexoSPR{
@Override
public
DtoUzyTavAnexoSPR
edit
(
Long
uzytavanexospr_id
,
DtoUzyTavAnexoSPR
dtoUzyTavAnexoSPR
)
throws
IOException
{
public
DtoUzyTavAnexoSPR
edit
(
Long
uzytavanexospr_id
,
DtoUzyTavAnexoSPR
dtoUzyTavAnexoSPR
)
{
return
null
;
}
...
...
uploadsPDF/38_MuestraPDF (1).pdf
deleted
100644 → 0
View file @
40bc6c1f
File deleted
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