|
|
@ -50,7 +50,6 @@ import java.util.Scanner; |
|
|
|
import org.apache.commons.lang.ArrayUtils; |
|
|
|
import org.apache.commons.lang.ArrayUtils; |
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
|
|
|
|
|
|
|
|
import com.liferay.portal.NoSuchRepositoryEntryException; |
|
|
|
|
|
|
|
import com.liferay.portal.kernel.dao.orm.QueryUtil; |
|
|
|
import com.liferay.portal.kernel.dao.orm.QueryUtil; |
|
|
|
import com.liferay.portal.kernel.exception.PortalException; |
|
|
|
import com.liferay.portal.kernel.exception.PortalException; |
|
|
|
import com.liferay.portal.kernel.exception.SystemException; |
|
|
|
import com.liferay.portal.kernel.exception.SystemException; |
|
|
@ -64,7 +63,6 @@ import com.liferay.portal.model.User; |
|
|
|
import com.liferay.portal.security.permission.ActionKeys; |
|
|
|
import com.liferay.portal.security.permission.ActionKeys; |
|
|
|
import com.liferay.portal.service.ServiceContext; |
|
|
|
import com.liferay.portal.service.ServiceContext; |
|
|
|
import com.liferay.portal.service.UserLocalServiceUtil; |
|
|
|
import com.liferay.portal.service.UserLocalServiceUtil; |
|
|
|
import com.liferay.portlet.documentlibrary.NoSuchFileEntryException; |
|
|
|
|
|
|
|
import com.liferay.portlet.documentlibrary.NoSuchFolderException; |
|
|
|
import com.liferay.portlet.documentlibrary.NoSuchFolderException; |
|
|
|
import com.liferay.portlet.documentlibrary.service.DLAppLocalServiceUtil; |
|
|
|
import com.liferay.portlet.documentlibrary.service.DLAppLocalServiceUtil; |
|
|
|
|
|
|
|
|
|
|
@ -94,22 +92,26 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
* to access the asseverazione local service. |
|
|
|
* to access the asseverazione local service. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public String anteprimaAsseverazione(String tipo, User user, DettPratica dettPratica, String relazioni) |
|
|
|
public String anteprimaAsseverazione(String tipo, User user, DettPratica dettPratica, String relazioni) |
|
|
|
throws IOException, SystemException, PortalException { |
|
|
|
throws IOException, SystemException, PortalException { |
|
|
|
return testoAsseverazione(tipo, user.getScreenName(), dettPratica, relazioni, true); |
|
|
|
return testoAsseverazione(tipo, user.getScreenName(), dettPratica, relazioni, true); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public String testoAsseverazione(String tipo, User user, long dettPraticaId, String relazioni) |
|
|
|
public String testoAsseverazione(String tipo, User user, long dettPraticaId, String relazioni) |
|
|
|
throws SystemException, PortalException, IOException { |
|
|
|
throws SystemException, PortalException, IOException { |
|
|
|
return testoAsseverazione(tipo, user.getScreenName(), dettPraticaId, relazioni); |
|
|
|
return testoAsseverazione(tipo, user.getScreenName(), dettPraticaId, relazioni); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public String testoAsseverazione(String tipo, String codiceFiscale, long dettPraticaId, String relazioni) |
|
|
|
public String testoAsseverazione(String tipo, String codiceFiscale, long dettPraticaId, String relazioni) |
|
|
|
throws PortalException, SystemException, IOException { |
|
|
|
throws PortalException, SystemException, IOException { |
|
|
|
DettPratica dettPratica = DettPraticaLocalServiceUtil.getDettPratica(dettPraticaId); |
|
|
|
DettPratica dettPratica = DettPraticaLocalServiceUtil.getDettPratica(dettPraticaId); |
|
|
|
return testoAsseverazione(tipo, codiceFiscale, dettPratica, relazioni); |
|
|
|
return testoAsseverazione(tipo, codiceFiscale, dettPratica, relazioni); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public String testoAsseverazione(String tipo, String codiceFiscale, DettPratica dettPratica, |
|
|
|
public String testoAsseverazione(String tipo, String codiceFiscale, DettPratica dettPratica, |
|
|
|
String relazioni) throws SystemException, PortalException, IOException { |
|
|
|
String relazioni) throws SystemException, PortalException, IOException { |
|
|
|
return testoAsseverazione(tipo, codiceFiscale, dettPratica, relazioni, false); |
|
|
|
return testoAsseverazione(tipo, codiceFiscale, dettPratica, relazioni, false); |
|
|
@ -254,6 +256,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
return html; |
|
|
|
return html; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public Asseverazione addAsseverazione(long userId, long intPraticaId, long dettPraticaId, |
|
|
|
public Asseverazione addAsseverazione(long userId, long intPraticaId, long dettPraticaId, |
|
|
|
String tipologia, String codiceFiscale, ServiceContext serviceContext) throws PortalException, |
|
|
|
String tipologia, String codiceFiscale, ServiceContext serviceContext) throws PortalException, |
|
|
|
SystemException { |
|
|
|
SystemException { |
|
|
@ -288,6 +291,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
return asseverazione; |
|
|
|
return asseverazione; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void richiediAsseverazioni(long dettPraticaId, ServiceContext serviceContext) |
|
|
|
public void richiediAsseverazioni(long dettPraticaId, ServiceContext serviceContext) |
|
|
|
throws SystemException, PortalException { |
|
|
|
throws SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
@ -390,6 +394,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void resetAsseverazione(long asseverazioneId) throws PortalException, SystemException { |
|
|
|
public void resetAsseverazione(long asseverazioneId) throws PortalException, SystemException { |
|
|
|
|
|
|
|
|
|
|
|
Asseverazione asseverazione = asseverazioneLocalService.getAsseverazione(asseverazioneId); |
|
|
|
Asseverazione asseverazione = asseverazioneLocalService.getAsseverazione(asseverazioneId); |
|
|
@ -406,11 +411,13 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
asseverazionePersistence.update(asseverazione); |
|
|
|
asseverazionePersistence.update(asseverazione); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void annullaAsseverazioni(long dettPraticaId) throws IOException, SystemException, PortalException { |
|
|
|
public void annullaAsseverazioni(long dettPraticaId) throws IOException, SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
|
cambioStatoAsseverazioni(dettPraticaId, AsseverazioniUtil.STATO_ANNULLATA); |
|
|
|
cambioStatoAsseverazioni(dettPraticaId, AsseverazioniUtil.STATO_ANNULLATA); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void cambioStatoAsseverazione(long userId, long asseverazioneId, String stato) throws IOException, |
|
|
|
public void cambioStatoAsseverazione(long userId, long asseverazioneId, String stato) throws IOException, |
|
|
|
SystemException, PortalException { |
|
|
|
SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
@ -428,6 +435,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
asseverazione = asseverazionePersistence.update(asseverazione); |
|
|
|
asseverazione = asseverazionePersistence.update(asseverazione); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public Asseverazione generateReportAsseverazione(Asseverazione asseverazione, long userId) |
|
|
|
public Asseverazione generateReportAsseverazione(Asseverazione asseverazione, long userId) |
|
|
|
throws IOException, SystemException, PortalException { |
|
|
|
throws IOException, SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
@ -501,6 +509,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
return asseverazione; |
|
|
|
return asseverazione; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void cambioStatoAsseverazioni(long dettPraticaId, String stato) throws IOException, |
|
|
|
public void cambioStatoAsseverazioni(long dettPraticaId, String stato) throws IOException, |
|
|
|
SystemException, PortalException { |
|
|
|
SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
@ -510,6 +519,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void concludiAsseverazioniExpired(long dettPraticaId) throws IOException, SystemException, |
|
|
|
public void concludiAsseverazioniExpired(long dettPraticaId) throws IOException, SystemException, |
|
|
|
PortalException { |
|
|
|
PortalException { |
|
|
|
|
|
|
|
|
|
|
@ -522,6 +532,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void rimuoviFileAsseverazione(long asseverazioneId) throws SystemException, PortalException { |
|
|
|
public void rimuoviFileAsseverazione(long asseverazioneId) throws SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
|
Asseverazione asseverazione = asseverazioneLocalService.getAsseverazione(asseverazioneId); |
|
|
|
Asseverazione asseverazione = asseverazioneLocalService.getAsseverazione(asseverazioneId); |
|
|
@ -554,6 +565,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
return deleteAsseverazione(asseverazioneLocalService.getAsseverazione(asseverazioneId)); |
|
|
|
return deleteAsseverazione(asseverazioneLocalService.getAsseverazione(asseverazioneId)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public FileEntry allegaFileAsseverazione(long asseverazioneId, byte[] content, String sourceFileName, |
|
|
|
public FileEntry allegaFileAsseverazione(long asseverazioneId, byte[] content, String sourceFileName, |
|
|
|
ServiceContext serviceContext) throws SystemException, PortalException { |
|
|
|
ServiceContext serviceContext) throws SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
|
@ -602,28 +614,33 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
return fileEntry; |
|
|
|
return fileEntry; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByIntPratica(long intPraticaId, int start, int end, |
|
|
|
public List<Asseverazione> findByIntPratica(long intPraticaId, int start, int end, |
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.findByIntPratica(intPraticaId, start, end, orderByComparator); |
|
|
|
return asseverazionePersistence.findByIntPratica(intPraticaId, start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByDettPratica(long dettPraticaId, int start, int end, |
|
|
|
public List<Asseverazione> findByDettPratica(long dettPraticaId, int start, int end, |
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.findByDettPratica(dettPraticaId, start, end, orderByComparator); |
|
|
|
return asseverazionePersistence.findByDettPratica(dettPraticaId, start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByIntPratica(long intPraticaId) throws SystemException { |
|
|
|
public int countByIntPratica(long intPraticaId) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByIntPratica(intPraticaId); |
|
|
|
return asseverazionePersistence.countByIntPratica(intPraticaId); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByDettPratica(long dettPraticaId) throws SystemException { |
|
|
|
public int countByDettPratica(long dettPraticaId) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByDettPratica(dettPraticaId); |
|
|
|
return asseverazionePersistence.countByDettPratica(dettPraticaId); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale, |
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale, |
|
|
|
int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -631,12 +648,14 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
end, orderByComparator); |
|
|
|
end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale) |
|
|
|
public int countByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByIntPratica_CodiceFiscale(intPraticaId, codiceFiscale); |
|
|
|
return asseverazionePersistence.countByIntPratica_CodiceFiscale(intPraticaId, codiceFiscale); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti, int start, |
|
|
|
public List<Asseverazione> findByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti, int start, |
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -644,11 +663,13 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
orderByComparator); |
|
|
|
orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti) throws SystemException { |
|
|
|
public int countByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByCodiceFiscale_InEsito(codiceFiscale, esiti); |
|
|
|
return asseverazionePersistence.countByCodiceFiscale_InEsito(codiceFiscale, esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_InEsito(long intPraticaId, |
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_InEsito(long intPraticaId, |
|
|
|
String codiceFiscale, String[] esiti, int start, int end, OrderByComparator orderByComparator) |
|
|
|
String codiceFiscale, String[] esiti, int start, int end, OrderByComparator orderByComparator) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
@ -657,6 +678,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, |
|
|
|
public List<Asseverazione> findByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, |
|
|
|
String codiceFiscale, String[] esiti, int start, int end, OrderByComparator orderByComparator) |
|
|
|
String codiceFiscale, String[] esiti, int start, int end, OrderByComparator orderByComparator) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
@ -665,6 +687,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByIntPratica_CodiceFiscale_InEsito(long intPraticaId, String codiceFiscale, String[] esiti) |
|
|
|
public int countByIntPratica_CodiceFiscale_InEsito(long intPraticaId, String codiceFiscale, String[] esiti) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -672,6 +695,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
esiti); |
|
|
|
esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, String codiceFiscale, |
|
|
|
public int countByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, String codiceFiscale, |
|
|
|
String[] esiti) throws SystemException { |
|
|
|
String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -679,6 +703,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
esiti); |
|
|
|
esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByIntPratica_InEsito(long intPraticaId, String[] esiti, int start, |
|
|
|
public List<Asseverazione> findByIntPratica_InEsito(long intPraticaId, String[] esiti, int start, |
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -686,11 +711,13 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
orderByComparator); |
|
|
|
orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByIntPratica_InEsito(long intPraticaId, String[] esiti) throws SystemException { |
|
|
|
public int countByIntPratica_InEsito(long intPraticaId, String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByIntPratica_InEsito(intPraticaId, esiti); |
|
|
|
return asseverazionePersistence.countByIntPratica_InEsito(intPraticaId, esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByDettPratica_InEsito(long dettPraticaId, String[] esiti, int start, |
|
|
|
public List<Asseverazione> findByDettPratica_InEsito(long dettPraticaId, String[] esiti, int start, |
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -698,11 +725,13 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
orderByComparator); |
|
|
|
orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByDettPratica_InEsito(long dettPraticaId, String[] esiti) throws SystemException { |
|
|
|
public int countByDettPratica_InEsito(long dettPraticaId, String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByDettPratica_InEsito(dettPraticaId, esiti); |
|
|
|
return asseverazionePersistence.countByDettPratica_InEsito(dettPraticaId, esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByCodiceFiscale_Tipologia_InEsito(String codiceFiscale, String tipologia, |
|
|
|
public List<Asseverazione> findByCodiceFiscale_Tipologia_InEsito(String codiceFiscale, String tipologia, |
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -710,6 +739,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByCodiceFiscale_Tipologia_InEsito(String codiceFiscale, String tipologia, String[] esiti) |
|
|
|
public int countByCodiceFiscale_Tipologia_InEsito(String codiceFiscale, String tipologia, String[] esiti) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -717,6 +747,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
esiti); |
|
|
|
esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, |
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, |
|
|
|
String codiceFiscale, String tipologia, String[] esiti, int start, int end, |
|
|
|
String codiceFiscale, String tipologia, String[] esiti, int start, int end, |
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
@ -725,6 +756,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
codiceFiscale, tipologia, esiti, start, end, orderByComparator); |
|
|
|
codiceFiscale, tipologia, esiti, start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, String codiceFiscale, |
|
|
|
public int countByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, String codiceFiscale, |
|
|
|
String tipologia, String[] esiti) throws SystemException { |
|
|
|
String tipologia, String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -732,6 +764,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
codiceFiscale, tipologia, esiti); |
|
|
|
codiceFiscale, tipologia, esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, |
|
|
|
public List<Asseverazione> findByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, |
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -739,6 +772,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
start, end, orderByComparator); |
|
|
|
start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<Asseverazione> findByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, |
|
|
|
public List<Asseverazione> findByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, |
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
|
@ -746,12 +780,14 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase |
|
|
|
start, end, orderByComparator); |
|
|
|
start, end, orderByComparator); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, String[] esiti) |
|
|
|
public int countByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, String[] esiti) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|
return asseverazionePersistence.countByIntPratica_Tipologia_InEsito(intPraticaId, tipologia, esiti); |
|
|
|
return asseverazionePersistence.countByIntPratica_Tipologia_InEsito(intPraticaId, tipologia, esiti); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public int countByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, String[] esiti) |
|
|
|
public int countByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, String[] esiti) |
|
|
|
throws SystemException { |
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
|
|