true
if this dett pratica is no collaudo.
+ *
+ * @return true
if this dett pratica is no collaudo; false
otherwise
+ */
+ public boolean isNoCollaudo();
+
+ /**
+ * Sets whether this dett pratica is no collaudo.
+ *
+ * @param noCollaudo the no collaudo of this dett pratica
+ */
+ public void setNoCollaudo(boolean noCollaudo);
+
/**
* Returns the codice fiscale delegato of this dett pratica.
*
@@ -3535,6 +3556,92 @@ public interface DettPraticaModel extends BaseModeltrue
if this dett pratica is tc nuova costruzione pertinenza.
+ *
+ * @return true
if this dett pratica is tc nuova costruzione pertinenza; false
otherwise
+ */
+ public boolean isTcNuovaCostruzionePertinenza();
+
+ /**
+ * Sets whether this dett pratica is tc nuova costruzione pertinenza.
+ *
+ * @param tcNuovaCostruzionePertinenza the tc nuova costruzione pertinenza of this dett pratica
+ */
+ public void setTcNuovaCostruzionePertinenza(
+ boolean tcNuovaCostruzionePertinenza);
+
+ /**
+ * Returns the tc intervento opere escavazione of this dett pratica.
+ *
+ * @return the tc intervento opere escavazione of this dett pratica
+ */
+ public boolean getTcInterventoOpereEscavazione();
+
+ /**
+ * Returns true
if this dett pratica is tc intervento opere escavazione.
+ *
+ * @return true
if this dett pratica is tc intervento opere escavazione; false
otherwise
+ */
+ public boolean isTcInterventoOpereEscavazione();
+
+ /**
+ * Sets whether this dett pratica is tc intervento opere escavazione.
+ *
+ * @param tcInterventoOpereEscavazione the tc intervento opere escavazione of this dett pratica
+ */
+ public void setTcInterventoOpereEscavazione(
+ boolean tcInterventoOpereEscavazione);
+
+ /**
+ * Returns the tc viarch of this dett pratica.
+ *
+ * @return the tc viarch of this dett pratica
+ */
+ public boolean getTcViarch();
+
+ /**
+ * Returns true
if this dett pratica is tc viarch.
+ *
+ * @return true
if this dett pratica is tc viarch; false
otherwise
+ */
+ public boolean isTcViarch();
+
+ /**
+ * Sets whether this dett pratica is tc viarch.
+ *
+ * @param tcViarch the tc viarch of this dett pratica
+ */
+ public void setTcViarch(boolean tcViarch);
+
+ /**
+ * Returns the tc opera a25 of this dett pratica.
+ *
+ * @return the tc opera a25 of this dett pratica
+ */
+ public boolean getTcOperaA25();
+
+ /**
+ * Returns true
if this dett pratica is tc opera a25.
+ *
+ * @return true
if this dett pratica is tc opera a25; false
otherwise
+ */
+ public boolean isTcOperaA25();
+
+ /**
+ * Sets whether this dett pratica is tc opera a25.
+ *
+ * @param tcOperaA25 the tc opera a25 of this dett pratica
+ */
+ public void setTcOperaA25(boolean tcOperaA25);
+
/**
* Returns the tc altri interventi of this dett pratica.
*
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaSoap.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaSoap.java
index d778cc20..2e39aaa3 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaSoap.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaSoap.java
@@ -81,6 +81,7 @@ public class DettPraticaSoap implements Serializable {
soapModel.setVarianteSostanziale(model.getVarianteSostanziale());
soapModel.setOperaConforme(model.getOperaConforme());
soapModel.setCollaudoStatico(model.getCollaudoStatico());
+ soapModel.setNoCollaudo(model.getNoCollaudo());
soapModel.setCodiceFiscaleDelegato(model.getCodiceFiscaleDelegato());
soapModel.setCodiceRuoloDelegato(model.getCodiceRuoloDelegato());
soapModel.setCodiceFiscaleDelegatoCommittente(model.getCodiceFiscaleDelegatoCommittente());
@@ -229,6 +230,10 @@ public class DettPraticaSoap implements Serializable {
soapModel.setTcRiparazioneInterventoLocale(model.getTcRiparazioneInterventoLocale());
soapModel.setTcCostruzioniEsistenti(model.getTcCostruzioniEsistenti());
soapModel.setTcManutOrdStraord(model.getTcManutOrdStraord());
+ soapModel.setTcNuovaCostruzionePertinenza(model.getTcNuovaCostruzionePertinenza());
+ soapModel.setTcInterventoOpereEscavazione(model.getTcInterventoOpereEscavazione());
+ soapModel.setTcViarch(model.getTcViarch());
+ soapModel.setTcOperaA25(model.getTcOperaA25());
soapModel.setTcAltriInterventi(model.getTcAltriInterventi());
soapModel.setTcAltriInterventiDesc(model.getTcAltriInterventiDesc());
soapModel.setTcInCA(model.getTcInCA());
@@ -755,6 +760,18 @@ public class DettPraticaSoap implements Serializable {
_collaudoStatico = collaudoStatico;
}
+ public boolean getNoCollaudo() {
+ return _noCollaudo;
+ }
+
+ public boolean isNoCollaudo() {
+ return _noCollaudo;
+ }
+
+ public void setNoCollaudo(boolean noCollaudo) {
+ _noCollaudo = noCollaudo;
+ }
+
public String getCodiceFiscaleDelegato() {
return _codiceFiscaleDelegato;
}
@@ -2246,6 +2263,56 @@ public class DettPraticaSoap implements Serializable {
_tcManutOrdStraord = tcManutOrdStraord;
}
+ public boolean getTcNuovaCostruzionePertinenza() {
+ return _tcNuovaCostruzionePertinenza;
+ }
+
+ public boolean isTcNuovaCostruzionePertinenza() {
+ return _tcNuovaCostruzionePertinenza;
+ }
+
+ public void setTcNuovaCostruzionePertinenza(
+ boolean tcNuovaCostruzionePertinenza) {
+ _tcNuovaCostruzionePertinenza = tcNuovaCostruzionePertinenza;
+ }
+
+ public boolean getTcInterventoOpereEscavazione() {
+ return _tcInterventoOpereEscavazione;
+ }
+
+ public boolean isTcInterventoOpereEscavazione() {
+ return _tcInterventoOpereEscavazione;
+ }
+
+ public void setTcInterventoOpereEscavazione(
+ boolean tcInterventoOpereEscavazione) {
+ _tcInterventoOpereEscavazione = tcInterventoOpereEscavazione;
+ }
+
+ public boolean getTcViarch() {
+ return _tcViarch;
+ }
+
+ public boolean isTcViarch() {
+ return _tcViarch;
+ }
+
+ public void setTcViarch(boolean tcViarch) {
+ _tcViarch = tcViarch;
+ }
+
+ public boolean getTcOperaA25() {
+ return _tcOperaA25;
+ }
+
+ public boolean isTcOperaA25() {
+ return _tcOperaA25;
+ }
+
+ public void setTcOperaA25(boolean tcOperaA25) {
+ _tcOperaA25 = tcOperaA25;
+ }
+
public boolean getTcAltriInterventi() {
return _tcAltriInterventi;
}
@@ -2828,6 +2895,7 @@ public class DettPraticaSoap implements Serializable {
private boolean _varianteSostanziale;
private boolean _operaConforme;
private boolean _collaudoStatico;
+ private boolean _noCollaudo;
private String _codiceFiscaleDelegato;
private String _codiceRuoloDelegato;
private String _codiceFiscaleDelegatoCommittente;
@@ -2976,6 +3044,10 @@ public class DettPraticaSoap implements Serializable {
private boolean _tcRiparazioneInterventoLocale;
private boolean _tcCostruzioniEsistenti;
private boolean _tcManutOrdStraord;
+ private boolean _tcNuovaCostruzionePertinenza;
+ private boolean _tcInterventoOpereEscavazione;
+ private boolean _tcViarch;
+ private boolean _tcOperaA25;
private boolean _tcAltriInterventi;
private String _tcAltriInterventiDesc;
private boolean _tcInCA;
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaWrapper.java
index 1dacb3fe..c5bf946d 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaWrapper.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/model/DettPraticaWrapper.java
@@ -101,6 +101,7 @@ public class DettPraticaWrapper implements DettPratica,
attributes.put("varianteSostanziale", getVarianteSostanziale());
attributes.put("operaConforme", getOperaConforme());
attributes.put("collaudoStatico", getCollaudoStatico());
+ attributes.put("noCollaudo", getNoCollaudo());
attributes.put("codiceFiscaleDelegato", getCodiceFiscaleDelegato());
attributes.put("codiceRuoloDelegato", getCodiceRuoloDelegato());
attributes.put("codiceFiscaleDelegatoCommittente",
@@ -305,6 +306,12 @@ public class DettPraticaWrapper implements DettPratica,
getTcRiparazioneInterventoLocale());
attributes.put("tcCostruzioniEsistenti", getTcCostruzioniEsistenti());
attributes.put("tcManutOrdStraord", getTcManutOrdStraord());
+ attributes.put("tcNuovaCostruzionePertinenza",
+ getTcNuovaCostruzionePertinenza());
+ attributes.put("tcInterventoOpereEscavazione",
+ getTcInterventoOpereEscavazione());
+ attributes.put("tcViarch", getTcViarch());
+ attributes.put("tcOperaA25", getTcOperaA25());
attributes.put("tcAltriInterventi", getTcAltriInterventi());
attributes.put("tcAltriInterventiDesc", getTcAltriInterventiDesc());
attributes.put("tcInCA", getTcInCA());
@@ -665,6 +672,12 @@ public class DettPraticaWrapper implements DettPratica,
setCollaudoStatico(collaudoStatico);
}
+ Boolean noCollaudo = (Boolean)attributes.get("noCollaudo");
+
+ if (noCollaudo != null) {
+ setNoCollaudo(noCollaudo);
+ }
+
String codiceFiscaleDelegato = (String)attributes.get(
"codiceFiscaleDelegato");
@@ -1664,6 +1677,32 @@ public class DettPraticaWrapper implements DettPratica,
setTcManutOrdStraord(tcManutOrdStraord);
}
+ Boolean tcNuovaCostruzionePertinenza = (Boolean)attributes.get(
+ "tcNuovaCostruzionePertinenza");
+
+ if (tcNuovaCostruzionePertinenza != null) {
+ setTcNuovaCostruzionePertinenza(tcNuovaCostruzionePertinenza);
+ }
+
+ Boolean tcInterventoOpereEscavazione = (Boolean)attributes.get(
+ "tcInterventoOpereEscavazione");
+
+ if (tcInterventoOpereEscavazione != null) {
+ setTcInterventoOpereEscavazione(tcInterventoOpereEscavazione);
+ }
+
+ Boolean tcViarch = (Boolean)attributes.get("tcViarch");
+
+ if (tcViarch != null) {
+ setTcViarch(tcViarch);
+ }
+
+ Boolean tcOperaA25 = (Boolean)attributes.get("tcOperaA25");
+
+ if (tcOperaA25 != null) {
+ setTcOperaA25(tcOperaA25);
+ }
+
Boolean tcAltriInterventi = (Boolean)attributes.get("tcAltriInterventi");
if (tcAltriInterventi != null) {
@@ -3080,6 +3119,36 @@ public class DettPraticaWrapper implements DettPratica,
_dettPratica.setCollaudoStatico(collaudoStatico);
}
+ /**
+ * Returns the no collaudo of this dett pratica.
+ *
+ * @return the no collaudo of this dett pratica
+ */
+ @Override
+ public boolean getNoCollaudo() {
+ return _dettPratica.getNoCollaudo();
+ }
+
+ /**
+ * Returns true
if this dett pratica is no collaudo.
+ *
+ * @return true
if this dett pratica is no collaudo; false
otherwise
+ */
+ @Override
+ public boolean isNoCollaudo() {
+ return _dettPratica.isNoCollaudo();
+ }
+
+ /**
+ * Sets whether this dett pratica is no collaudo.
+ *
+ * @param noCollaudo the no collaudo of this dett pratica
+ */
+ @Override
+ public void setNoCollaudo(boolean noCollaudo) {
+ _dettPratica.setNoCollaudo(noCollaudo);
+ }
+
/**
* Returns the codice fiscale delegato of this dett pratica.
*
@@ -6746,6 +6815,128 @@ public class DettPraticaWrapper implements DettPratica,
_dettPratica.setTcManutOrdStraord(tcManutOrdStraord);
}
+ /**
+ * Returns the tc nuova costruzione pertinenza of this dett pratica.
+ *
+ * @return the tc nuova costruzione pertinenza of this dett pratica
+ */
+ @Override
+ public boolean getTcNuovaCostruzionePertinenza() {
+ return _dettPratica.getTcNuovaCostruzionePertinenza();
+ }
+
+ /**
+ * Returns true
if this dett pratica is tc nuova costruzione pertinenza.
+ *
+ * @return true
if this dett pratica is tc nuova costruzione pertinenza; false
otherwise
+ */
+ @Override
+ public boolean isTcNuovaCostruzionePertinenza() {
+ return _dettPratica.isTcNuovaCostruzionePertinenza();
+ }
+
+ /**
+ * Sets whether this dett pratica is tc nuova costruzione pertinenza.
+ *
+ * @param tcNuovaCostruzionePertinenza the tc nuova costruzione pertinenza of this dett pratica
+ */
+ @Override
+ public void setTcNuovaCostruzionePertinenza(
+ boolean tcNuovaCostruzionePertinenza) {
+ _dettPratica.setTcNuovaCostruzionePertinenza(tcNuovaCostruzionePertinenza);
+ }
+
+ /**
+ * Returns the tc intervento opere escavazione of this dett pratica.
+ *
+ * @return the tc intervento opere escavazione of this dett pratica
+ */
+ @Override
+ public boolean getTcInterventoOpereEscavazione() {
+ return _dettPratica.getTcInterventoOpereEscavazione();
+ }
+
+ /**
+ * Returns true
if this dett pratica is tc intervento opere escavazione.
+ *
+ * @return true
if this dett pratica is tc intervento opere escavazione; false
otherwise
+ */
+ @Override
+ public boolean isTcInterventoOpereEscavazione() {
+ return _dettPratica.isTcInterventoOpereEscavazione();
+ }
+
+ /**
+ * Sets whether this dett pratica is tc intervento opere escavazione.
+ *
+ * @param tcInterventoOpereEscavazione the tc intervento opere escavazione of this dett pratica
+ */
+ @Override
+ public void setTcInterventoOpereEscavazione(
+ boolean tcInterventoOpereEscavazione) {
+ _dettPratica.setTcInterventoOpereEscavazione(tcInterventoOpereEscavazione);
+ }
+
+ /**
+ * Returns the tc viarch of this dett pratica.
+ *
+ * @return the tc viarch of this dett pratica
+ */
+ @Override
+ public boolean getTcViarch() {
+ return _dettPratica.getTcViarch();
+ }
+
+ /**
+ * Returns true
if this dett pratica is tc viarch.
+ *
+ * @return true
if this dett pratica is tc viarch; false
otherwise
+ */
+ @Override
+ public boolean isTcViarch() {
+ return _dettPratica.isTcViarch();
+ }
+
+ /**
+ * Sets whether this dett pratica is tc viarch.
+ *
+ * @param tcViarch the tc viarch of this dett pratica
+ */
+ @Override
+ public void setTcViarch(boolean tcViarch) {
+ _dettPratica.setTcViarch(tcViarch);
+ }
+
+ /**
+ * Returns the tc opera a25 of this dett pratica.
+ *
+ * @return the tc opera a25 of this dett pratica
+ */
+ @Override
+ public boolean getTcOperaA25() {
+ return _dettPratica.getTcOperaA25();
+ }
+
+ /**
+ * Returns true
if this dett pratica is tc opera a25.
+ *
+ * @return true
if this dett pratica is tc opera a25; false
otherwise
+ */
+ @Override
+ public boolean isTcOperaA25() {
+ return _dettPratica.isTcOperaA25();
+ }
+
+ /**
+ * Sets whether this dett pratica is tc opera a25.
+ *
+ * @param tcOperaA25 the tc opera a25 of this dett pratica
+ */
+ @Override
+ public void setTcOperaA25(boolean tcOperaA25) {
+ _dettPratica.setTcOperaA25(tcOperaA25);
+ }
+
/**
* Returns the tc altri interventi of this dett pratica.
*
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalService.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalService.java
index 39889acb..12db8c97 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalService.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalService.java
@@ -553,7 +553,10 @@ public interface DettPraticaLocalService extends BaseLocalService,
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException;
@@ -647,7 +650,10 @@ public interface DettPraticaLocalService extends BaseLocalService,
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException;
@@ -710,7 +716,11 @@ public interface DettPraticaLocalService extends BaseLocalService,
boolean normEsenteSpese, boolean normDpr01Dep, boolean normDpr02Dep,
boolean normDpr01Aut, boolean normDpr02Aut, boolean normArt3com3,
boolean normArt3com4,
- com.liferay.portal.service.ServiceContext serviceContext, boolean bozza)
+ com.liferay.portal.service.ServiceContext serviceContext,
+ boolean bozza, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException;
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceClp.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceClp.java
index 99e628c9..208a1f62 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceClp.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceClp.java
@@ -276,7 +276,8 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
"com.liferay.portal.service.ServiceContext", "boolean",
"java.lang.String", "java.lang.String", "java.lang.String",
"java.lang.String", "java.lang.Boolean", "java.lang.Boolean",
- "java.lang.Boolean", "java.lang.String"
+ "java.lang.Boolean", "java.lang.String", "boolean", "boolean",
+ "boolean", "boolean", "boolean"
};
_methodName42 = "updateDettPraticaDatiDomanda";
@@ -316,7 +317,8 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
"com.liferay.portal.service.ServiceContext", "boolean",
"java.lang.String", "java.lang.String", "java.lang.String",
"java.lang.String", "java.lang.Boolean", "java.lang.Boolean",
- "java.lang.Boolean", "java.lang.String"
+ "java.lang.Boolean", "java.lang.String", "boolean", "boolean",
+ "boolean", "boolean", "boolean"
};
_methodName43 = "updateDettPraticaDatiIntegrazione";
@@ -340,7 +342,8 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
"java.lang.String", "boolean", "boolean", "boolean", "boolean",
"boolean", "boolean", "boolean", "boolean", "boolean", "boolean",
"boolean", "boolean", "boolean",
- "com.liferay.portal.service.ServiceContext", "boolean"
+ "com.liferay.portal.service.ServiceContext", "boolean",
+ "boolean", "boolean", "boolean", "boolean", "boolean"
};
_methodName44 = "updateDettPraticaGeologo";
@@ -2012,7 +2015,10 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
Object returnObj = null;
@@ -2461,7 +2467,17 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
ClpSerializer.translateInput(tcAltriInterventi),
- ClpSerializer.translateInput(tcAltriInterventiDesc)
+ ClpSerializer.translateInput(tcAltriInterventiDesc),
+
+ noCollaudo,
+
+ tcNuovaCostruzionePertinenza,
+
+ tcInterventoOpereEscavazione,
+
+ tcViarch,
+
+ tcOperaA25
});
}
catch (Throwable t) {
@@ -2577,7 +2593,10 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
Object returnObj = null;
@@ -2892,7 +2911,17 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
ClpSerializer.translateInput(tcAltriInterventi),
- ClpSerializer.translateInput(tcAltriInterventiDesc)
+ ClpSerializer.translateInput(tcAltriInterventiDesc),
+
+ noCollaudo,
+
+ tcNuovaCostruzionePertinenza,
+
+ tcInterventoOpereEscavazione,
+
+ tcViarch,
+
+ tcOperaA25
});
}
catch (Throwable t) {
@@ -2977,7 +3006,11 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
boolean normEsenteSpese, boolean normDpr01Dep, boolean normDpr02Dep,
boolean normDpr01Aut, boolean normDpr02Aut, boolean normArt3com3,
boolean normArt3com4,
- com.liferay.portal.service.ServiceContext serviceContext, boolean bozza)
+ com.liferay.portal.service.ServiceContext serviceContext,
+ boolean bozza, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
Object returnObj = null;
@@ -3164,7 +3197,17 @@ public class DettPraticaLocalServiceClp implements DettPraticaLocalService {
ClpSerializer.translateInput(serviceContext),
- bozza
+ bozza,
+
+ noCollaudo,
+
+ tcNuovaCostruzionePertinenza,
+
+ tcInterventoOpereEscavazione,
+
+ tcViarch,
+
+ tcOperaA25
});
}
catch (Throwable t) {
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceUtil.java
index 25e23be9..9eaabe0a 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceUtil.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceUtil.java
@@ -621,7 +621,10 @@ public class DettPraticaLocalServiceUtil {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return getService()
@@ -701,7 +704,9 @@ public class DettPraticaLocalServiceUtil {
intervFinPub, intervFinPubDesc, serviceContext, bozza,
paesaggioLocale, livelloDiTutela, vincoli,
destinazioneAltroIntervento, tcCostruzioniEsistenti,
- tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc);
+ tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc,
+ noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
public static it.tref.liferay.portos.bo.model.DettPratica updateDettPraticaDatiDomanda(
@@ -793,7 +798,10 @@ public class DettPraticaLocalServiceUtil {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return getService()
@@ -848,7 +856,9 @@ public class DettPraticaLocalServiceUtil {
intervFinPub, intervFinPubDesc, serviceContext, bozza,
paesaggioLocale, livelloDiTutela, vincoli,
destinazioneAltroIntervento, tcCostruzioniEsistenti,
- tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc);
+ tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc,
+ noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
public static it.tref.liferay.portos.bo.model.DettPratica updateDettPraticaDatiIntegrazione(
@@ -909,7 +919,11 @@ public class DettPraticaLocalServiceUtil {
boolean normEsenteSpese, boolean normDpr01Dep, boolean normDpr02Dep,
boolean normDpr01Aut, boolean normDpr02Aut, boolean normArt3com3,
boolean normArt3com4,
- com.liferay.portal.service.ServiceContext serviceContext, boolean bozza)
+ com.liferay.portal.service.ServiceContext serviceContext,
+ boolean bozza, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return getService()
@@ -949,7 +963,8 @@ public class DettPraticaLocalServiceUtil {
tcRiparazioneInterventoLocale, normLavoriInProprio,
normEsenteBollo, normEsenteSpese, normDpr01Dep, normDpr02Dep,
normDpr01Aut, normDpr02Aut, normArt3com3, normArt3com4,
- serviceContext, bozza);
+ serviceContext, bozza, noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
public static it.tref.liferay.portos.bo.model.DettPratica updateDettPraticaGeologo(
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceWrapper.java
index 54c98483..f3d39776 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceWrapper.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaLocalServiceWrapper.java
@@ -651,7 +651,10 @@ public class DettPraticaLocalServiceWrapper implements DettPraticaLocalService,
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _dettPraticaLocalService.updateDettPratica(userId,
@@ -731,7 +734,9 @@ public class DettPraticaLocalServiceWrapper implements DettPraticaLocalService,
intervFinPub, intervFinPubDesc, serviceContext, bozza,
paesaggioLocale, livelloDiTutela, vincoli,
destinazioneAltroIntervento, tcCostruzioniEsistenti,
- tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc);
+ tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc,
+ noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
@Override
@@ -824,7 +829,10 @@ public class DettPraticaLocalServiceWrapper implements DettPraticaLocalService,
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _dettPraticaLocalService.updateDettPraticaDatiDomanda(userId,
@@ -878,7 +886,9 @@ public class DettPraticaLocalServiceWrapper implements DettPraticaLocalService,
intervFinPub, intervFinPubDesc, serviceContext, bozza,
paesaggioLocale, livelloDiTutela, vincoli,
destinazioneAltroIntervento, tcCostruzioniEsistenti,
- tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc);
+ tcManutOrdStraord, tcAltriInterventi, tcAltriInterventiDesc,
+ noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
@Override
@@ -940,7 +950,11 @@ public class DettPraticaLocalServiceWrapper implements DettPraticaLocalService,
boolean normEsenteSpese, boolean normDpr01Dep, boolean normDpr02Dep,
boolean normDpr01Aut, boolean normDpr02Aut, boolean normArt3com3,
boolean normArt3com4,
- com.liferay.portal.service.ServiceContext serviceContext, boolean bozza)
+ com.liferay.portal.service.ServiceContext serviceContext,
+ boolean bozza, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _dettPraticaLocalService.updateDettPraticaDatiIntegrazione(userId,
@@ -979,7 +993,8 @@ public class DettPraticaLocalServiceWrapper implements DettPraticaLocalService,
tcRiparazioneInterventoLocale, normLavoriInProprio,
normEsenteBollo, normEsenteSpese, normDpr01Dep, normDpr02Dep,
normDpr01Aut, normDpr02Aut, normArt3com3, normArt3com4,
- serviceContext, bozza);
+ serviceContext, bozza, noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
@Override
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaService.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaService.java
index e5ac43ed..8a4fbe1e 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaService.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaService.java
@@ -252,7 +252,10 @@ public interface DettPraticaService extends BaseService, InvokableService {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException;
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceClp.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceClp.java
index ddb97cf5..f70e94de 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceClp.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceClp.java
@@ -133,7 +133,8 @@ public class DettPraticaServiceClp implements DettPraticaService {
"com.liferay.portal.service.ServiceContext", "boolean",
"boolean", "boolean", "java.lang.String", "java.lang.String",
"java.lang.String", "java.lang.String", "java.lang.Boolean",
- "java.lang.Boolean", "java.lang.Boolean", "java.lang.String"
+ "java.lang.Boolean", "java.lang.Boolean", "java.lang.String",
+ "boolean", "boolean", "boolean", "boolean", "boolean"
};
_methodName12 = "fetchDettPratica";
@@ -713,7 +714,10 @@ public class DettPraticaServiceClp implements DettPraticaService {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
Object returnObj = null;
@@ -1166,7 +1170,17 @@ public class DettPraticaServiceClp implements DettPraticaService {
ClpSerializer.translateInput(tcAltriInterventi),
- ClpSerializer.translateInput(tcAltriInterventiDesc)
+ ClpSerializer.translateInput(tcAltriInterventiDesc),
+
+ noCollaudo,
+
+ tcNuovaCostruzionePertinenza,
+
+ tcInterventoOpereEscavazione,
+
+ tcViarch,
+
+ tcOperaA25
});
}
catch (Throwable t) {
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceUtil.java
index 73676f4b..8d679a6c 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceUtil.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceUtil.java
@@ -272,7 +272,10 @@ public class DettPraticaServiceUtil {
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return getService()
@@ -353,7 +356,8 @@ public class DettPraticaServiceUtil {
disabledSubmit, geoDisabledSubmit, paesaggioLocale,
livelloDiTutela, vincoli, destinazioneAltroIntervento,
tcCostruzioniEsistenti, tcManutOrdStraord, tcAltriInterventi,
- tcAltriInterventiDesc);
+ tcAltriInterventiDesc, noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
public static it.tref.liferay.portos.bo.model.DettPratica fetchDettPratica(
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceWrapper.java
index f4d592a6..1eeb4429 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceWrapper.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/DettPraticaServiceWrapper.java
@@ -272,7 +272,10 @@ public class DettPraticaServiceWrapper implements DettPraticaService,
java.lang.Boolean tcCostruzioniEsistenti,
java.lang.Boolean tcManutOrdStraord,
java.lang.Boolean tcAltriInterventi,
- java.lang.String tcAltriInterventiDesc)
+ java.lang.String tcAltriInterventiDesc, boolean noCollaudo,
+ boolean tcNuovaCostruzionePertinenza,
+ boolean tcInterventoOpereEscavazione, boolean tcViarch,
+ boolean tcOperaA25)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _dettPraticaService.updateDettPratica(userId, dettPraticaId,
@@ -352,7 +355,8 @@ public class DettPraticaServiceWrapper implements DettPraticaService,
disabledSubmit, geoDisabledSubmit, paesaggioLocale,
livelloDiTutela, vincoli, destinazioneAltroIntervento,
tcCostruzioniEsistenti, tcManutOrdStraord, tcAltriInterventi,
- tcAltriInterventiDesc);
+ tcAltriInterventiDesc, noCollaudo, tcNuovaCostruzionePertinenza,
+ tcInterventoOpereEscavazione, tcViarch, tcOperaA25);
}
@Override
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/sql/tables.sql b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/sql/tables.sql
index d8faf819..e5ba1d84 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/sql/tables.sql
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/sql/tables.sql
@@ -246,6 +246,7 @@ create table portos_bo_DettPratica (
varianteSostanziale BOOLEAN,
operaConforme BOOLEAN,
collaudoStatico BOOLEAN,
+ noCollaudo BOOLEAN,
codiceFiscaleDelegato VARCHAR(16) null,
codiceRuoloDelegato VARCHAR(75) null,
codiceFiscaleDelegatoCommittente VARCHAR(75) null,
@@ -394,6 +395,10 @@ create table portos_bo_DettPratica (
tcRiparazioneInterventoLocale BOOLEAN,
tcCostruzioniEsistenti BOOLEAN,
tcManutOrdStraord BOOLEAN,
+ tcNuovaCostruzionePertinenza BOOLEAN,
+ tcInterventoOpereEscavazione BOOLEAN,
+ tcViarch BOOLEAN,
+ tcOperaA25 BOOLEAN,
tcAltriInterventi BOOLEAN,
tcAltriInterventiDesc VARCHAR(75) null,
tcInCA BOOLEAN,
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/META-INF/portlet-hbm.xml b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/META-INF/portlet-hbm.xml
index f32022ee..8d6ccc59 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/META-INF/portlet-hbm.xml
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/META-INF/portlet-hbm.xml
@@ -296,6 +296,7 @@