Se modifca una consulta de ClasPre y se modifica el modelo de ModelUzyTavParaEva…

Se modifca una consulta de ClasPre y se modifica el modelo de ModelUzyTavParaEva y el dto de DtoUzyTavParaEva
parent 1a1381b2
......@@ -31,9 +31,9 @@ public class UzyTavClasPreController {
return new ResponseEntity<>(serviceUzyTavClasPre.ListarPorID(id), HttpStatus.OK);
}
@GetMapping("/obtenerClasificadorPresupNombre/{presupID}")
public ResponseEntity<List<DtoClaspreClassPresupNombre>> obtenerClasificadorPresupNombre(@PathVariable Long presupID) {
return new ResponseEntity<>(serviceUzyTavClasPre.obtenerClasificadorPresupNombre(presupID), HttpStatus.OK);
@GetMapping("/obtenerClasificadorPresupNombre/{claspreID}")
public ResponseEntity<List<DtoClaspreClassPresupNombre>> obtenerClasificadorPresupNombre(@PathVariable Long claspreID) {
return new ResponseEntity<>(serviceUzyTavClasPre.obtenerClasificadorPresupNombre(claspreID), HttpStatus.OK);
}
......
......@@ -26,7 +26,7 @@ public interface DaoUzyTavClasPre extends JpaRepository<ModelUzyTavClasPre, Long
@Query("SELECT new ec.edu.espe.movilidad.MovilidadWS.Dto.DtoClaspreClassPresupNombre(c.uzytavclaspre_id, c.uzytclasificador_presup.uzytclasificador_presup_id, c.uzytclasificador_presup.uzytclasificador_presup_nombre) FROM ModelUzyTavClasPre c " +
"INNER JOIN c.uzytclasificador_presup p " +
"ON p.uzytclasificador_presup_id = c.uzytclasificador_presup.uzytclasificador_presup_id " +
"WHERE p.uzytclasificador_presup_id = :presupID")
List<DtoClaspreClassPresupNombre> obtenerClasificadorPresupNombre(@Param("presupID") Long presupID);
"WHERE c.uzytavclaspre_id= :claspreID")
List<DtoClaspreClassPresupNombre> obtenerClasificadorPresupNombre(@Param("claspreID") Long claspreID);
}
......@@ -11,7 +11,7 @@ public class DtoUzyTavParaEva {
private Integer uzytavparaeva_orden;
private Long uzytavconparaeva_id;
private String uzytavparaeva_opcmenu;
private Integer uzytavcabparaevaf_id;
private Long uzytavcabparaevaf_id;
private String uzytavparaeva_aspeva;
private String uzytavparaeva_infoadic;
private String uzytavparaeva_preginfoadic;
......
......@@ -37,7 +37,7 @@ public class ModelUzyTavParaEva {
@Column(name = "uzytavparaeva_opcmenu")
private String uzytavparaeva_opcmenu;
@Column(name = "uzytavcabparaevaf_id")
private Integer uzytavcabparaevaf_id;
private Long uzytavcabparaevaf_id;
@Column(name = "uzytavparaeva_aspeva")
private String uzytavparaeva_aspeva;
@Column(name = "uzytavparaeva_infoadic")
......
......@@ -13,7 +13,7 @@ public interface IServiceUzyTavClasPre {
List<DtoUzyTavClasPre> ListarRegistros();
List<DtoClaspreClassPresupNombre> obtenerClasificadorPresupNombre(Long presupID);
List<DtoClaspreClassPresupNombre> obtenerTodosClasificadorPresupNombre();
List<DtoUzyTavClasPre> obtenerClasificadorPresup(Long presupID);
List<DtoUzyTavClasPre> obtenerClasificadorPresup(Long claspreID);
DtoUzyTavClasPre guardar(DtoUzyTavClasPre dtoUzyTavClasPre);
DtoUzyTavClasPre editar(Long id, DtoUzyTavClasPre dtoUzyTavClasPre);
......
......@@ -46,8 +46,8 @@ public class ServiceUzyTavClasPre implements IServiceUzyTavClasPre{
@Override
public List<DtoUzyTavClasPre> obtenerClasificadorPresup(Long presupID) {
List<ModelUzyTavClasPre> entities = daoUzyTavClasPre.obtenerClasificadorPresup(presupID);
public List<DtoUzyTavClasPre> obtenerClasificadorPresup(Long claspreID) {
List<ModelUzyTavClasPre> entities = daoUzyTavClasPre.obtenerClasificadorPresup(claspreID);
return mapper.entitiesToDtos(entities);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment