Fissato problema nei contratti per previousContract
This commit is contained in:
parent
3c01bf39b8
commit
953dc7a23b
|
@ -21,6 +21,5 @@ public class EPASContractsDTO implements Serializable {
|
||||||
private String id;
|
private String id;
|
||||||
private boolean onCertificate;
|
private boolean onCertificate;
|
||||||
private String personId;
|
private String personId;
|
||||||
private String previousContract;
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -38,7 +38,6 @@ public class EPASContractsMapper {
|
||||||
if (epasContracts.getPerson() != null) {
|
if (epasContracts.getPerson() != null) {
|
||||||
epasContractsDTO.setPersonId(epasContracts.getPerson().getId());
|
epasContractsDTO.setPersonId(epasContracts.getPerson().getId());
|
||||||
}
|
}
|
||||||
epasContractsDTO.setPreviousContract(epasContracts.getPreviousContract());
|
|
||||||
return epasContractsDTO;
|
return epasContractsDTO;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ public class EPASContracts implements Serializable {
|
||||||
private String id;
|
private String id;
|
||||||
private boolean onCertificate;
|
private boolean onCertificate;
|
||||||
private EPASPersons person;
|
private EPASPersons person;
|
||||||
private String previousContract;
|
|
||||||
private EPASWorkingTimeForPerson[] workingTimeTypes;
|
private EPASWorkingTimeForPerson[] workingTimeTypes;
|
||||||
private String updatedAt;
|
private String updatedAt;
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ public class SyncService {
|
||||||
PersOrarioService persOrarioService;
|
PersOrarioService persOrarioService;
|
||||||
@Autowired
|
@Autowired
|
||||||
PersOrarioMapper persOrarioMapper;
|
PersOrarioMapper persOrarioMapper;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
SIMasterLogService siMasterLogService;
|
SIMasterLogService siMasterLogService;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -223,8 +223,7 @@ public class SyncService {
|
||||||
writeScheduledData(fluxId, tabsSI, year, month);
|
writeScheduledData(fluxId, tabsSI, year, month);
|
||||||
siMasterLogService.closeFluxWrites(fluxId, writeTabs());
|
siMasterLogService.closeFluxWrites(fluxId, writeTabs());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void executeWritesOrario() throws Exception {
|
public void executeWritesOrario() throws Exception {
|
||||||
setBWriteTables();
|
setBWriteTables();
|
||||||
List<TabsSI> tabsSI = tabsSIService.getAllTabsSI();
|
List<TabsSI> tabsSI = tabsSIService.getAllTabsSI();
|
||||||
|
@ -635,136 +634,13 @@ public class SyncService {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (epasAffiliations != null) {
|
if (epasAffiliations != null) {
|
||||||
EPASAffiliations affPresent = null;
|
gestisciDipendenteGiaAffiliato(sigp, epasAffiliations);
|
||||||
for (EPASAffiliations aff : epasAffiliations) {
|
|
||||||
if (Integer.valueOf(aff.getExternalId()).compareTo(sigp.getId()) == 0) {
|
|
||||||
affPresent = aff;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (affPresent != null) {
|
|
||||||
List<EPASGroups> epasGroups = epasGroupsService.getList(ISTI_OFFICE_ID);
|
|
||||||
EPASGroups groupPresent = null;
|
|
||||||
if (epasGroups != null) {
|
|
||||||
for (EPASGroups g : epasGroups) {
|
|
||||||
if (Integer.valueOf(g.getExternalId()).compareTo(sigp.getId()) == 0) {
|
|
||||||
groupPresent = g;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (groupPresent != null) {
|
|
||||||
EPASPersons epasPerson = null;
|
|
||||||
try {
|
|
||||||
epasPerson = epasPersonsService.getByFiscalCode(sigp.getCf());
|
|
||||||
} catch (Exception e) {
|
|
||||||
logger.error("Error retrieving person by fiscal code: {}", sigp.getCf());
|
|
||||||
logger.error(e.getLocalizedMessage(), e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (epasPerson != null) {
|
|
||||||
EPASAffiliationsDTO epasAffiliationsDTO = new EPASAffiliationsDTO(
|
|
||||||
sdfDate.format(sigp.getDal()), sdfDate.format(sigp.getAl()),
|
|
||||||
groupPresent.getId(), null, String.valueOf(sigp.getPercentuale()),
|
|
||||||
epasPerson.getId(), String.valueOf(sigp.getId()));
|
|
||||||
epasAffiliationsService.updateById(affPresent.getId(), epasAffiliationsDTO);
|
|
||||||
logger.info("EPAS Updated Affilation: {}", epasAffiliationsDTO);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
List<EPASGroups> epasGroups = epasGroupsService.getList(ISTI_OFFICE_ID);
|
|
||||||
EPASGroups groupPresent = null;
|
|
||||||
if (epasGroups != null) {
|
|
||||||
for (EPASGroups g : epasGroups) {
|
|
||||||
if (Integer.valueOf(g.getExternalId()).compareTo(sigp.getId()) == 0) {
|
|
||||||
groupPresent = g;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (groupPresent != null) {
|
|
||||||
EPASPersons epasPerson = null;
|
|
||||||
try {
|
|
||||||
epasPerson = epasPersonsService.getByFiscalCode(sigp.getCf());
|
|
||||||
} catch (Exception e) {
|
|
||||||
logger.error("Error retrieving person by fiscal code: {}", sigp.getCf());
|
|
||||||
logger.error(e.getLocalizedMessage(), e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (epasPerson != null) {
|
|
||||||
EPASAffiliationsDTO epasAffiliationsDTO = new EPASAffiliationsDTO(
|
|
||||||
sdfDate.format(sigp.getDal()), sdfDate.format(sigp.getAl()),
|
|
||||||
groupPresent.getId(), null, String.valueOf(sigp.getPercentuale()),
|
|
||||||
epasPerson.getId(), String.valueOf(sigp.getId()));
|
|
||||||
EPASAffiliations epasAffiliationNew = epasAffiliationsService
|
|
||||||
.create(epasAffiliationsDTO);
|
|
||||||
logger.info("EPAS Created Affilation: {}", epasAffiliationNew);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
List<EPASGroups> epasGroups = epasGroupsService.getList(ISTI_OFFICE_ID);
|
gestisciDipendenteNonAffiliato(sigp);
|
||||||
EPASGroups groupPresent = null;
|
|
||||||
if (epasGroups != null) {
|
|
||||||
for (EPASGroups g : epasGroups) {
|
|
||||||
if (Integer.valueOf(g.getExternalId()).compareTo(sigp.getId()) == 0) {
|
|
||||||
groupPresent = g;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (groupPresent != null) {
|
|
||||||
EPASPersons epasPerson = null;
|
|
||||||
try {
|
|
||||||
epasPerson = epasPersonsService.getByFiscalCode(sigp.getCf());
|
|
||||||
} catch (Exception e) {
|
|
||||||
logger.error("Error retrieving person by fiscal code: {}", sigp.getCf());
|
|
||||||
logger.error(e.getLocalizedMessage(), e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (epasPerson != null) {
|
|
||||||
EPASAffiliationsDTO epasAffiliationsDTO = new EPASAffiliationsDTO(
|
|
||||||
sdfDate.format(sigp.getDal()), sdfDate.format(sigp.getAl()),
|
|
||||||
groupPresent.getId(), null, String.valueOf(sigp.getPercentuale()),
|
|
||||||
epasPerson.getId(), String.valueOf(sigp.getId()));
|
|
||||||
EPASAffiliations epasAffiliationNew = epasAffiliationsService
|
|
||||||
.create(epasAffiliationsDTO);
|
|
||||||
logger.info("EPAS Created Affilation: {}", epasAffiliationNew);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
List<EPASAffiliations> epasAffiliations = null;
|
rimuoviAffiliazione(sigp);
|
||||||
try {
|
|
||||||
epasAffiliations = epasAffiliationsService.getByPersonFiscalcode(sigp.getCf());
|
|
||||||
} catch (Exception e) {
|
|
||||||
logger.error("Error retrieving Affiliations for fiscal code: {}", sigp.getCf());
|
|
||||||
logger.error(e.getLocalizedMessage(), e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (epasAffiliations != null) {
|
|
||||||
EPASAffiliations affPresent = null;
|
|
||||||
for (EPASAffiliations aff : epasAffiliations) {
|
|
||||||
if (Integer.valueOf(aff.getExternalId()).compareTo(sigp.getId()) == 0) {
|
|
||||||
affPresent = aff;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (affPresent != null) {
|
|
||||||
EPASAffiliationsMapper epasAffiliationsMapper = new EPASAffiliationsMapper();
|
|
||||||
EPASAffiliationsDTO epasAffiliationsDTO = epasAffiliationsMapper
|
|
||||||
.epasAffiliationsToEPASAffiliationsDTO(affPresent);
|
|
||||||
epasAffiliationsDTO.setEndDate(sdfDate.format(sigp.getAl()));
|
|
||||||
epasAffiliationsService.updateById(affPresent.getId(), epasAffiliationsDTO);
|
|
||||||
logger.info("EPAS Delete Affilation: {}", epasAffiliationsDTO);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -778,6 +654,147 @@ public class SyncService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void rimuoviAffiliazione(SIGruppiPers sigp) {
|
||||||
|
logger.debug("Rimuovi Affiliazione");
|
||||||
|
List<EPASAffiliations> epasAffiliations = null;
|
||||||
|
try {
|
||||||
|
epasAffiliations = epasAffiliationsService.getByPersonFiscalcode(sigp.getCf());
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("Error retrieving Affiliations for fiscal code: {}", sigp.getCf());
|
||||||
|
logger.error(e.getLocalizedMessage(), e);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (epasAffiliations != null) {
|
||||||
|
EPASAffiliations affPresent = null;
|
||||||
|
for (EPASAffiliations aff : epasAffiliations) {
|
||||||
|
if (aff.getExternalId() != null && !aff.getExternalId().isEmpty()) {
|
||||||
|
Integer affId = 0;
|
||||||
|
try {
|
||||||
|
affId = Integer.valueOf(aff.getExternalId());
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
logger.error("Invalid aff external id: {} ", aff.getExternalId());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (affId.compareTo(sigp.getId()) == 0) {
|
||||||
|
affPresent = aff;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (affPresent != null) {
|
||||||
|
EPASAffiliationsMapper epasAffiliationsMapper = new EPASAffiliationsMapper();
|
||||||
|
EPASAffiliationsDTO epasAffiliationsDTO = epasAffiliationsMapper
|
||||||
|
.epasAffiliationsToEPASAffiliationsDTO(affPresent);
|
||||||
|
epasAffiliationsDTO.setEndDate(sdfDate.format(sigp.getAl()));
|
||||||
|
epasAffiliationsService.updateById(affPresent.getId(), epasAffiliationsDTO);
|
||||||
|
logger.info("EPAS Delete Affilation: {}", epasAffiliationsDTO);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void gestisciDipendenteNonAffiliato(SIGruppiPers sigp) {
|
||||||
|
logger.debug("Aggiungi dipendente non affiliato");
|
||||||
|
List<EPASGroups> epasGroups = epasGroupsService.getList(ISTI_OFFICE_ID);
|
||||||
|
EPASGroups groupPresent = null;
|
||||||
|
if (epasGroups != null) {
|
||||||
|
for (EPASGroups g : epasGroups) {
|
||||||
|
if (g.getExternalId() != null && !g.getExternalId().isEmpty()) {
|
||||||
|
Integer gId = 0;
|
||||||
|
try {
|
||||||
|
gId = Integer.valueOf(g.getExternalId());
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
logger.error("Invalid external id: {} ", g.getExternalId());
|
||||||
|
}
|
||||||
|
if (gId.compareTo(sigp.getId()) == 0) {
|
||||||
|
groupPresent = g;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (groupPresent != null) {
|
||||||
|
EPASPersons epasPerson = null;
|
||||||
|
try {
|
||||||
|
epasPerson = epasPersonsService.getByFiscalCode(sigp.getCf());
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("Error retrieving person by fiscal code: {}", sigp.getCf());
|
||||||
|
logger.error(e.getLocalizedMessage(), e);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (epasPerson != null) {
|
||||||
|
EPASAffiliationsDTO epasAffiliationsDTO = new EPASAffiliationsDTO(sdfDate.format(sigp.getDal()),
|
||||||
|
sdfDate.format(sigp.getAl()), groupPresent.getId(), null,
|
||||||
|
String.valueOf(sigp.getPercentuale()), epasPerson.getId(), String.valueOf(sigp.getId()));
|
||||||
|
EPASAffiliations epasAffiliationNew = epasAffiliationsService.create(epasAffiliationsDTO);
|
||||||
|
logger.info("EPAS Created Affilation: {}", epasAffiliationNew);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void gestisciDipendenteGiaAffiliato(SIGruppiPers sigp, List<EPASAffiliations> epasAffiliations) {
|
||||||
|
logger.debug("Aggiungi dipendente già affiliato");
|
||||||
|
EPASAffiliations affPresent = null;
|
||||||
|
for (EPASAffiliations aff : epasAffiliations) {
|
||||||
|
if (aff.getExternalId() != null && !aff.getExternalId().isEmpty()) {
|
||||||
|
Integer affId = 0;
|
||||||
|
try {
|
||||||
|
affId = Integer.valueOf(aff.getExternalId());
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
logger.error("Invalid aff external id: {} ", aff.getExternalId());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (affId.compareTo(sigp.getId()) == 0) {
|
||||||
|
affPresent = aff;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (affPresent != null) {
|
||||||
|
List<EPASGroups> epasGroups = epasGroupsService.getList(ISTI_OFFICE_ID);
|
||||||
|
EPASGroups groupPresent = null;
|
||||||
|
if (epasGroups != null) {
|
||||||
|
for (EPASGroups g : epasGroups) {
|
||||||
|
if (g.getExternalId() != null && !g.getExternalId().isEmpty()) {
|
||||||
|
Integer gId = 0;
|
||||||
|
try {
|
||||||
|
gId = Integer.valueOf(g.getExternalId());
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
logger.error("Invalid external id: {} ", g.getExternalId());
|
||||||
|
}
|
||||||
|
if (gId.compareTo(sigp.getId()) == 0) {
|
||||||
|
groupPresent = g;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
if (groupPresent != null) {
|
||||||
|
EPASPersons epasPerson = null;
|
||||||
|
try {
|
||||||
|
epasPerson = epasPersonsService.getByFiscalCode(sigp.getCf());
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("Error retrieving person by fiscal code: {}", sigp.getCf());
|
||||||
|
logger.error(e.getLocalizedMessage(), e);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (epasPerson != null) {
|
||||||
|
EPASAffiliationsDTO epasAffiliationsDTO = new EPASAffiliationsDTO(sdfDate.format(sigp.getDal()),
|
||||||
|
sdfDate.format(sigp.getAl()), groupPresent.getId(), null,
|
||||||
|
String.valueOf(sigp.getPercentuale()), epasPerson.getId(),
|
||||||
|
String.valueOf(sigp.getId()));
|
||||||
|
epasAffiliationsService.updateById(affPresent.getId(), epasAffiliationsDTO);
|
||||||
|
logger.info("EPAS Updated Affilation: {}", epasAffiliationsDTO);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
gestisciDipendenteNonAffiliato(sigp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private String readTabs() {
|
private String readTabs() {
|
||||||
String readTabs = "";
|
String readTabs = "";
|
||||||
if (banagrafico) {
|
if (banagrafico) {
|
||||||
|
@ -901,7 +918,7 @@ public class SyncService {
|
||||||
break;
|
break;
|
||||||
case "pers_orario":
|
case "pers_orario":
|
||||||
syncPersOrario(fluxId, tab, year, month, now);
|
syncPersOrario(fluxId, tab, year, month, now);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -909,8 +926,7 @@ public class SyncService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void writeOrarioData(Long fluxId, List<TabsSI> tabsSI) {
|
private void writeOrarioData(Long fluxId, List<TabsSI> tabsSI) {
|
||||||
for (TabsSI tab : tabsSI) {
|
for (TabsSI tab : tabsSI) {
|
||||||
logger.info("TabSI: {}", tab);
|
logger.info("TabSI: {}", tab);
|
||||||
|
@ -1325,8 +1341,8 @@ public class SyncService {
|
||||||
|
|
||||||
private void writeAspettativeOnSI(Long fluxId, LocalDateTime now, List<EPASLeaves> epasLeavesList,
|
private void writeAspettativeOnSI(Long fluxId, LocalDateTime now, List<EPASLeaves> epasLeavesList,
|
||||||
LinkedHashMap<String, EPASAbsenceTypes> epasAbsenceTypeMap) {
|
LinkedHashMap<String, EPASAbsenceTypes> epasAbsenceTypeMap) {
|
||||||
int count=0;
|
int count = 0;
|
||||||
|
|
||||||
// SI
|
// SI
|
||||||
for (EPASLeaves leave : epasLeavesList) {
|
for (EPASLeaves leave : epasLeavesList) {
|
||||||
logger.debug("Writing Leave: {}", leave);
|
logger.debug("Writing Leave: {}", leave);
|
||||||
|
@ -1419,11 +1435,11 @@ public class SyncService {
|
||||||
|
|
||||||
if (checkSIAspettativeIsUpgradeable(siAspettative)) {
|
if (checkSIAspettativeIsUpgradeable(siAspettative)) {
|
||||||
logger.info("Write SIAspettativa: {}", siAspettative);
|
logger.info("Write SIAspettativa: {}", siAspettative);
|
||||||
count=count+1;
|
count = count + 1;
|
||||||
siAspettativeService.writeNewFlux(fluxId, siAspettative);
|
siAspettativeService.writeNewFlux(fluxId, siAspettative);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
logger.info("Aspettative scritte su SI: {}",count);
|
logger.info("Aspettative scritte su SI: {}", count);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean checkSIAspettativeIsUpgradeable(SIAspettative siAspettative) {
|
private boolean checkSIAspettativeIsUpgradeable(SIAspettative siAspettative) {
|
||||||
|
@ -1469,8 +1485,8 @@ public class SyncService {
|
||||||
} else {
|
} else {
|
||||||
logger.info("PersonWorkingTimeDTOList size: {}", epasPersonWorkingTimeDTOList.size());
|
logger.info("PersonWorkingTimeDTOList size: {}", epasPersonWorkingTimeDTOList.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
int count=0;
|
int count = 0;
|
||||||
// SI
|
// SI
|
||||||
for (EPASPersonWorkingTimeDTO pwtDTO : epasPersonWorkingTimeDTOList) {
|
for (EPASPersonWorkingTimeDTO pwtDTO : epasPersonWorkingTimeDTOList) {
|
||||||
logger.info("Writing Person Working Time: {}", pwtDTO);
|
logger.info("Writing Person Working Time: {}", pwtDTO);
|
||||||
|
@ -1540,22 +1556,20 @@ public class SyncService {
|
||||||
LocalDateTime dMod = now.truncatedTo(ChronoUnit.SECONDS);
|
LocalDateTime dMod = now.truncatedTo(ChronoUnit.SECONDS);
|
||||||
Timestamp dataMod = Timestamp.valueOf(dMod);
|
Timestamp dataMod = Timestamp.valueOf(dMod);
|
||||||
|
|
||||||
|
|
||||||
SIPersOrario siPersOrario = new SIPersOrario(id, idPersona, pwtDTO.getCf(), startDate, endDate,
|
SIPersOrario siPersOrario = new SIPersOrario(id, idPersona, pwtDTO.getCf(), startDate, endDate,
|
||||||
pwtDTO.getDescrizione(), pwtDTO.getLun(), pwtDTO.getMar(), pwtDTO.getMer(), pwtDTO.getGio(),
|
pwtDTO.getDescrizione(), pwtDTO.getLun(), pwtDTO.getMar(), pwtDTO.getMer(), pwtDTO.getGio(),
|
||||||
pwtDTO.getVen(), pwtDTO.getSab(), pwtDTO.getPercentuale(), pwtDTO.getTurno(), pwtDTO.getOre_turno(),
|
pwtDTO.getVen(), pwtDTO.getSab(), pwtDTO.getPercentuale(), pwtDTO.getTurno(), pwtDTO.getOre_turno(),
|
||||||
pwtDTO.getFestivo(), pwtDTO.getNotturno(), dataMod, SI_FLAG_DEL_FALSE, fluxId);
|
pwtDTO.getFestivo(), pwtDTO.getNotturno(), dataMod, SI_FLAG_DEL_FALSE, fluxId);
|
||||||
|
|
||||||
if (checkSIPersOrarioIsUpgradeable(siPersOrario)) {
|
if (checkSIPersOrarioIsUpgradeable(siPersOrario)) {
|
||||||
logger.info("Write SIPersOrario: {}", siPersOrario);
|
logger.info("Write SIPersOrario: {}", siPersOrario);
|
||||||
count=count+1;
|
count = count + 1;
|
||||||
siPersOrarioService.writeNewFlux(fluxId, siPersOrario);
|
siPersOrarioService.writeNewFlux(fluxId, siPersOrario);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
logger.info("Personale Orario scritto su SI: {}",count);
|
logger.info("Personale Orario scritto su SI: {}", count);
|
||||||
|
|
||||||
logger.info("SIPersOrario Updated");
|
logger.info("SIPersOrario Updated");
|
||||||
bpers_orario = true;
|
bpers_orario = true;
|
||||||
tab.setIdFlusso(fluxId);
|
tab.setIdFlusso(fluxId);
|
||||||
|
@ -1563,22 +1577,22 @@ public class SyncService {
|
||||||
tabsSIService.updateTabsSI(tab);
|
tabsSIService.updateTabsSI(tab);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean checkSIPersOrarioIsUpgradeable(SIPersOrario siPersOrario) {
|
private boolean checkSIPersOrarioIsUpgradeable(SIPersOrario siPersOrario) {
|
||||||
boolean upgradeable = false;
|
boolean upgradeable = false;
|
||||||
try {
|
try {
|
||||||
Optional<PersOrario> persOrario = persOrarioService.getPersOrarioById(siPersOrario.getId());
|
Optional<PersOrario> persOrario = persOrarioService.getPersOrarioById(siPersOrario.getId());
|
||||||
if (persOrario.isPresent()) {
|
if (persOrario.isPresent()) {
|
||||||
PersOrario found = persOrario.get();
|
PersOrario found = persOrario.get();
|
||||||
logger.debug("Found: {}",found);
|
logger.debug("Found: {}", found);
|
||||||
PersOrario persOrarioDTO = persOrarioMapper.siPersOrarioToPersOrario(siPersOrario);
|
PersOrario persOrarioDTO = persOrarioMapper.siPersOrarioToPersOrario(siPersOrario);
|
||||||
logger.debug("PersOrarioDTO: {}",persOrarioDTO);
|
logger.debug("PersOrarioDTO: {}", persOrarioDTO);
|
||||||
if (!found.same(persOrarioDTO)) {
|
if (!found.same(persOrarioDTO)) {
|
||||||
upgradeable = true;
|
upgradeable = true;
|
||||||
persOrarioService.updatePersOrario(persOrarioDTO);
|
persOrarioService.updatePersOrario(persOrarioDTO);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger.debug("Not found PersOrario by id: {}",siPersOrario.getId());
|
logger.debug("Not found PersOrario by id: {}", siPersOrario.getId());
|
||||||
upgradeable = true;
|
upgradeable = true;
|
||||||
PersOrario persOrarioDTO = persOrarioMapper.siPersOrarioToPersOrario(siPersOrario);
|
PersOrario persOrarioDTO = persOrarioMapper.siPersOrarioToPersOrario(siPersOrario);
|
||||||
persOrarioService.createPersOrario(persOrarioDTO);
|
persOrarioService.createPersOrario(persOrarioDTO);
|
||||||
|
@ -1591,8 +1605,6 @@ public class SyncService {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private void syncCartelliniRendicontazioni(Long fluxId, TabsSI tab, String year, String month, LocalDateTime now,
|
private void syncCartelliniRendicontazioni(Long fluxId, TabsSI tab, String year, String month, LocalDateTime now,
|
||||||
TimeCardsReporting timeCardsReporting) throws Exception {
|
TimeCardsReporting timeCardsReporting) throws Exception {
|
||||||
if (tab.getIdFlusso() == null || tab.getIdFlusso().longValue() == 0) {
|
if (tab.getIdFlusso() == null || tab.getIdFlusso().longValue() == 0) {
|
||||||
|
|
|
@ -72,7 +72,7 @@ public class EPASContractsResourceIT {
|
||||||
private static final String CONTRACT_DEFAUL_ENDDATE = null;
|
private static final String CONTRACT_DEFAUL_ENDDATE = null;
|
||||||
private static final String CONTRACT_DEFAULT_ENDCONTRACT = null;
|
private static final String CONTRACT_DEFAULT_ENDCONTRACT = null;
|
||||||
private static final boolean CONTRACT_DEFAULT_ONCERTIFICATE = true;
|
private static final boolean CONTRACT_DEFAULT_ONCERTIFICATE = true;
|
||||||
private static final String CONTRACT_DEFAULT_PREVIOUSCONTRACT = null;
|
//private static final String CONTRACT_DEFAULT_PREVIOUSCONTRACT = null;
|
||||||
private static final String CONTRACT_DEFAULT_EXTERNALID = "2496";
|
private static final String CONTRACT_DEFAULT_EXTERNALID = "2496";
|
||||||
|
|
||||||
private static final String CONTRACT_UPDATE_ENDATE = "2021-12-31";
|
private static final String CONTRACT_UPDATE_ENDATE = "2021-12-31";
|
||||||
|
@ -102,7 +102,6 @@ public class EPASContractsResourceIT {
|
||||||
epasContracts.setEndContract(CONTRACT_DEFAULT_ENDCONTRACT);
|
epasContracts.setEndContract(CONTRACT_DEFAULT_ENDCONTRACT);
|
||||||
epasContracts.setOnCertificate(CONTRACT_DEFAULT_ONCERTIFICATE);
|
epasContracts.setOnCertificate(CONTRACT_DEFAULT_ONCERTIFICATE);
|
||||||
epasContracts.setPerson(createEPASPerson());
|
epasContracts.setPerson(createEPASPerson());
|
||||||
epasContracts.setPreviousContract(CONTRACT_DEFAULT_PREVIOUSCONTRACT);
|
|
||||||
epasContracts.setExternalId(CONTRACT_DEFAULT_EXTERNALID);
|
epasContracts.setExternalId(CONTRACT_DEFAULT_EXTERNALID);
|
||||||
return epasContracts;
|
return epasContracts;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue