develop #149

Merged
judaur2005 merged 2 commits from develop into main 2026-03-09 20:00:50 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 6494fe235e - Show all commits

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