Gestion des barem
All checks were successful
CI - Build & Test (develop) / build-and-test (pull_request) Successful in 30s

This commit is contained in:
2026-03-09 20:59:23 +01:00
parent db1fd2c821
commit 9b4edcdcea
2 changed files with 3 additions and 2 deletions

View File

@@ -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);
} }
} }