|
|
|
@ -812,9 +812,17 @@ public class ValidazionePraticaUtil {
|
|
|
|
|
|
|
|
|
|
DettPratica dettPratica = DettPraticaServiceUtil.getDettPratica(dettPraticaId); |
|
|
|
|
List<String> notCompleted = new ArrayList<>(); |
|
|
|
|
List<Soggetto> soggetti = SoggettoLocalServiceUtil.getValidTmpByIntPratica(dettPratica.getIntPraticaId()); |
|
|
|
|
boolean geologo = false; |
|
|
|
|
for(Soggetto soggetto : soggetti){ |
|
|
|
|
if(soggetto.getTipologiaSoggetto().equalsIgnoreCase(TipoSoggettoUtil.GEOLOGO)){ |
|
|
|
|
geologo = true; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Se check NormArt3com3 sez. geologica non obbligatoria
|
|
|
|
|
if (dettPratica.getNormArt3com3()) { |
|
|
|
|
if (dettPratica.getNormArt3com3() && !geologo) { |
|
|
|
|
return Collections.emptyList(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -938,16 +946,22 @@ public class ValidazionePraticaUtil {
|
|
|
|
|
* (Validator.isNull(dettPratica.getGeoPericolositaGeologica())) { |
|
|
|
|
* notCompleted.add("geo-pericolosita-geologica"); } if |
|
|
|
|
* (Validator.isNull(dettPratica.getGeoPericolositaGeomorfica())) { |
|
|
|
|
* notCompleted.add("geo-pericolosita-geomorfica"); } if |
|
|
|
|
* (Validator.isNull(dettPratica.getGeoRischioGeomorfologicoPai())) { |
|
|
|
|
* notCompleted.add("geo-rischio-geomorfologico"); } |
|
|
|
|
* notCompleted.add("geo-pericolosita-geomorfica"); } } |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
if(Validator.isNull(dettPratica.getGeoRischioGeomorfologicoPai())) { |
|
|
|
|
notCompleted.add("geo-rischio-geomorfologico"); |
|
|
|
|
} |
|
|
|
|
if (Validator.isNull(dettPratica.getGeoPericolositaIdraulicaPai())) { |
|
|
|
|
notCompleted.add("geo-pericolosita-idraulica-pai"); |
|
|
|
|
} |
|
|
|
|
if (Validator.isNull(dettPratica.getGeoRischioIdraulicoPai())) { |
|
|
|
|
notCompleted.add("geo-rischio-idraulico-pai"); |
|
|
|
|
} |
|
|
|
|
if (Validator.isNull(dettPratica.getGeoPericolositaGeomorfica())) { |
|
|
|
|
notCompleted.add("geo-pericolosita-geomorfica"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
* if (Validator.isNull(dettPratica.getGeoPericolositaSismica())) { |
|
|
|
|
* notCompleted.add("geo-pericolosita-sismica"); } if |
|
|
|
|