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

This commit is contained in:
vincenzofariello
2024-11-05 11:17:22 +01:00
parent 8bdf9151dd
commit 0a5adee8f7

View File

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