DBCFX_SM_695 - Anomalia viste del. 82 - errata/assente visualizzazione uscite OF

This commit is contained in:
vincenzofariello
2024-11-05 12:14:12 +01:00
parent 0a5adee8f7
commit 55cdcb1d89

View File

@@ -133,7 +133,14 @@ public class GnpgoGestioneNotificheD82DAO extends BaseHibernateDAO {
criterion.add(Restrictions.eq("idRichiesta", notifica.getIdRichiesta()));
criterion.add(Restrictions.eq("tipoComunicazione", notifica.getTipoComunicazione()));
if(notifica.getTipoEventoFase3() != null){
criterion.add(Restrictions.eq("tipoEventoFase3", notifica.getTipoEventoFase3()));
log.debug("find criteria: idRichiesta = " + notifica.getIdRichiesta() + " - tipoComunicazione: " + notifica.getTipoComunicazione()
+ " - tipoEventoFase3: " + notifica.getTipoEventoFase3());
}
else
log.debug("find criteria: idRichiesta = " + notifica.getIdRichiesta() + " - tipoComunicazione: " + notifica.getTipoComunicazione());
List<GnpgoGestioneNotificheD82> listGnpgoGestioneNotificheD82 = findByCriteria(criterion);
if (listGnpgoGestioneNotificheD82 != null && listGnpgoGestioneNotificheD82.size() > 0) {