Updated boolean flag baspettative
This commit is contained in:
parent
81fcab954c
commit
43f69757a8
|
@ -42,9 +42,13 @@ public class SIMasterLogRepository {
|
|||
public void closeFluxReads(String tabelleLette) throws Exception {
|
||||
logger.info("Chiusura Flusso in lettura");
|
||||
logger.info("Tabelle Lette: {}", tabelleLette);
|
||||
if (tabelleLette == null) {
|
||||
tabelleLette = " ";
|
||||
} else {
|
||||
if (tabelleLette.isEmpty()) {
|
||||
tabelleLette = " ";
|
||||
}
|
||||
}
|
||||
|
||||
String query = "SELECT id_flusso FROM master_log"
|
||||
+ " WHERE codice_flusso='epas' AND operazione='L' AND data_fine_oper IS NULL"
|
||||
|
@ -75,10 +79,8 @@ public class SIMasterLogRepository {
|
|||
public Long startFluxWrites() throws Exception {
|
||||
logger.info("Iniziato Flusso in scrittura");
|
||||
jdbcTemplate.update("INSERT INTO master_log (codice_flusso, tabelle, operazione, data_inizio_oper)"
|
||||
+ " VALUES ('epas','epas_cartellini, epas_cartellini_rendicontazioni,"
|
||||
+ " epas_orario,"
|
||||
+ " epas_lavoro_fuori_sede, epas_aspettative, epas_pers_orario',"
|
||||
+ " 'S',current_timestamp)");
|
||||
+ " VALUES ('epas','epas_cartellini, epas_cartellini_rendicontazioni," + " epas_orario,"
|
||||
+ " epas_lavoro_fuori_sede, epas_aspettative, epas_pers_orario'," + " 'S',current_timestamp)");
|
||||
logger.info("Flusso in scrittura aperto");
|
||||
|
||||
String query = "SELECT id_flusso FROM master_log" + " WHERE codice_flusso='epas' AND operazione='S'"
|
||||
|
@ -106,9 +108,13 @@ public class SIMasterLogRepository {
|
|||
public void closeFluxWrites(Long fluxId, String tabelleScritte) {
|
||||
logger.info("Chiusura Flusso in scrittura");
|
||||
logger.info("Tabelle Scritte: {}", tabelleScritte);
|
||||
if (tabelleScritte == null) {
|
||||
tabelleScritte = " ";
|
||||
} else {
|
||||
if (tabelleScritte.isEmpty()) {
|
||||
tabelleScritte = " ";
|
||||
}
|
||||
}
|
||||
|
||||
if (fluxId != null && fluxId.longValue() != 0) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue