Gestion des barem
All checks were successful
CI - Build & Test (develop) / build-and-test (pull_request) Successful in 30s
All checks were successful
CI - Build & Test (develop) / build-and-test (pull_request) Successful in 30s
This commit is contained in:
@@ -163,11 +163,12 @@ public class ImpositionsTfuServiceImpl implements ImpositionsTfuService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<ImpositionsTfuPaylaodWeb> getImpositionsTfuByUserIdIds(Long userId) {
|
public List<ImpositionsTfuPaylaodWeb> getImpositionsTfuByUserIdIds(Long userId) {
|
||||||
|
System.out.println(userId);
|
||||||
List<Structure> structures = structureService.getListStructureUserId(userId);
|
List<Structure> structures = structureService.getListStructureUserId(userId);
|
||||||
List<Long> structureIds = structures.stream()
|
List<Long> structureIds = structures.stream()
|
||||||
.map(Structure::getId)
|
.map(Structure::getId)
|
||||||
.toList();
|
.toList();
|
||||||
|
System.out.println(structureIds.get(0));
|
||||||
return impositionsTfuRepository.findByStructureIdsToDto(structureIds);
|
return impositionsTfuRepository.findByStructureIdsToDto(structureIds);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user