Fissato problema nella creazione dei gruppi dove il managerId deve

essere sempre diverso da null
This commit is contained in:
Giancarlo Panichi 2023-06-08 15:16:09 +02:00
parent 98b28769fd
commit 3fb588f690
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ public class SyncService {
if (groupPresent == null) {
EPASGroupsDTO epasGroupsDTO = new EPASGroupsDTO(sig.getDescrizione(), null,
String.valueOf(sig.getId()), null, null, sig.getSigla(), ISTI_OFFICE_ID);
String.valueOf(sig.getId()), null, "1", sig.getSigla(), ISTI_OFFICE_ID);
EPASGroups epasGroup = epasGroupsService.create(epasGroupsDTO);
logger.info("EPAS Created Group: {}", epasGroup);
} else {