|
|
|
@ -208,7 +208,6 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
+ "\", userCodiceFiscalePrimaFirma=\"" + userCodiceFiscalePrimaFirma + "\", fileEntryIdBase=" |
|
|
|
|
+ fileEntryIdBase + ", fileEntryIdFirma=" + fileEntryIdFirma + ", jsonParameters=\"" + jsonParameters |
|
|
|
|
+ "\", controlloPraticaId=" + controlloPraticaId + ", serviceContext=\"" + serviceContext + "\""); |
|
|
|
|
|
|
|
|
|
User user = userPersistence.fetchByPrimaryKey(serviceContext.getUserId()); |
|
|
|
|
Date now = new Date(); |
|
|
|
|
Avviso avviso = createAvviso(counterLocalService.increment(Avviso.class.getName())); |
|
|
|
@ -286,6 +285,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return super.addAvviso(avviso); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> search(long[] groupIds, Long classPk, String keywords, int start, int end) |
|
|
|
|
throws SystemException { |
|
|
|
@ -325,6 +325,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return dynamicQuery; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiFirmatiByCF(long companyId, String cf, int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -354,6 +355,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return dynamicQuery; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiDaFirmarePrimaFirmaByCF(long companyId, String cf, int start, int end) |
|
|
|
|
throws SystemException { |
|
|
|
@ -418,6 +420,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return dynamicQuery; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiDaFirmarePrimaFirmaByNotCF(long companyId, long[] groupIds, String cf, int start, |
|
|
|
|
int end) throws SystemException { |
|
|
|
@ -455,6 +458,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return dynamicQuery; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiDaFirmarePrimaFirma(long companyId, long[] groupIds, int start, int end) |
|
|
|
|
throws SystemException { |
|
|
|
@ -500,6 +504,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return (int) avvisoPersistence.countWithDynamicQuery(dynamicQuery); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiGenerazioneDocumento(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -526,6 +531,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return (int) avvisoPersistence.countWithDynamicQuery(dynamicQuery); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiFirmaDocumento(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -558,6 +564,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return (int) avvisoPersistence.countWithDynamicQuery(dynamicQuery); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiInvioDocumento(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -589,10 +596,12 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
public Avviso getAvvisoInvioSignal(long avvisoId) throws SystemException { |
|
|
|
|
|
|
|
|
|
DynamicQuery dynamicQuery = dynamicQueryAvvisiInvioSignal(avvisoId); |
|
|
|
|
List<Avviso> avviso = avvisoPersistence.findWithDynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return avviso.isEmpty() ? null : avviso.get(0); |
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
List<Avviso> avvisi = avvisoPersistence.findWithDynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return avvisi.isEmpty() ? null : avvisi.get(0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiInvioSignal(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -630,10 +639,12 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
public Avviso getAvvisoTempistica(long avvisoId) throws SystemException { |
|
|
|
|
|
|
|
|
|
DynamicQuery dynamicQuery = dynamicQueryAvvisiTempistica(avvisoId); |
|
|
|
|
List<Avviso> avviso = avvisoPersistence.findWithDynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return avviso.isEmpty() ? null : avviso.get(0); |
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
List<Avviso> avvisi = avvisoPersistence.findWithDynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return avvisi.isEmpty() ? null : avvisi.get(0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiTempistica(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -799,6 +810,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
public Avviso getAvvisoInvioTecnico(long avvisoId) throws SystemException { |
|
|
|
|
|
|
|
|
|
DynamicQuery dynamicQuery = dynamicQueryAvvisiInvioTecnico(avvisoId); |
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
List<Avviso> avvisi = avvisoPersistence.findWithDynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return avvisi.isEmpty() ? null : avvisi.get(0); |
|
|
|
|
} |
|
|
|
@ -810,6 +822,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return (int) avvisoPersistence.countWithDynamicQuery(dynamicQuery); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiInvioTecnico(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -860,6 +873,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return avvisoPersistence.findByIntPraticaIds_tipoDocumento(intPraticaIds, tipoDocumento); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> findByClassPk_ExcludeTipoDocumento(Long classPk, String tipoDocumento) throws SystemException { |
|
|
|
|
|
|
|
|
@ -987,10 +1001,12 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
disjunction.add(RestrictionsFactoryUtil.eq("tipoDocumento", StatoPraticaConstants.ANNULLATA)); |
|
|
|
|
dynamicQuery.add(disjunction); |
|
|
|
|
dynamicQuery.addOrder(OrderFactoryUtil.desc("avvisoId")); |
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
List<Avviso> avvisi = avvisoPersistence.findWithDynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return avvisi.isEmpty() ? null : avvisi.get(0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getListaAvvisiPerApplet(String codFisc) throws SystemException { |
|
|
|
|
|
|
|
|
@ -1041,6 +1057,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return updateAvviso(avviso); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiRifiutatiByControlloPraticaId(long controlloPraticaId) throws SystemException { |
|
|
|
|
|
|
|
|
@ -1081,6 +1098,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return avviso; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> protocolliSearch(String dataDa, String dataA, String numeroProtocollo, int start, int end) |
|
|
|
|
throws ParseException, SystemException { |
|
|
|
@ -1151,6 +1169,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return count; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiPerAggiuntaProtocollo(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -1179,9 +1198,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// NUOVI METODI ADT
|
|
|
|
|
/** |
|
|
|
|
* ADT |
|
|
|
|
*/ |
|
|
|
|
// ADT
|
|
|
|
|
@Override |
|
|
|
|
public int countAvvisiInvioTecnicoNew() throws SystemException { |
|
|
|
|
|
|
|
|
@ -1189,9 +1206,8 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return (int) avvisoPersistence.countWithDynamicQuery(dynamicQuery); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* ADT |
|
|
|
|
*/ |
|
|
|
|
// ADT
|
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
@Override |
|
|
|
|
public List<Avviso> getAvvisiInvioTecnicoNew(int start, int end) throws SystemException { |
|
|
|
|
|
|
|
|
@ -1200,9 +1216,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return avvisoPersistence.findWithDynamicQuery(dynamicQuery, start, end); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* ADT |
|
|
|
|
*/ |
|
|
|
|
// ADT
|
|
|
|
|
private DynamicQuery dynamicQueryAvvisiInvioTecnicoNew(Long avvisoId) throws SystemException { |
|
|
|
|
|
|
|
|
|
DynamicQuery dynamicQuery = dynamicQuery(); |
|
|
|
@ -1224,9 +1238,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
return dynamicQuery; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* ADT |
|
|
|
|
*/ |
|
|
|
|
// ADT
|
|
|
|
|
@Override |
|
|
|
|
public Avviso getAvvisoVidimazione(long intPraticaId, long dettPraticaID) throws SystemException { |
|
|
|
|
|
|
|
|
@ -1239,13 +1251,12 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
dynamicQuery.add(RestrictionsFactoryUtil.eq("intPraticaId", intPraticaId)); |
|
|
|
|
dynamicQuery.add(RestrictionsFactoryUtil.eq("classPk", dettPraticaID)); |
|
|
|
|
dynamicQuery.addOrder(OrderFactoryUtil.asc("avvisoId")); |
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
List<Avviso> ritorno = dynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return ritorno.isEmpty() ? null : ritorno.get(0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* ADT |
|
|
|
|
*/ |
|
|
|
|
// ADT
|
|
|
|
|
@Override |
|
|
|
|
public Avviso getLastAvvisoIntegrazione(long intPraticaId) throws SystemException { |
|
|
|
|
|
|
|
|
@ -1257,6 +1268,7 @@ public class AvvisoLocalServiceImpl extends AvvisoLocalServiceBaseImpl {
|
|
|
|
|
dynamicQuery.add(PropertyFactoryUtil.forName("annullato").eq(false)); |
|
|
|
|
dynamicQuery.add(RestrictionsFactoryUtil.eq("intPraticaId", intPraticaId)); |
|
|
|
|
dynamicQuery.addOrder(OrderFactoryUtil.desc("avvisoId")); |
|
|
|
|
@SuppressWarnings("unchecked") |
|
|
|
|
List<Avviso> ritorno = dynamicQuery(dynamicQuery, 0, 1); |
|
|
|
|
return ritorno.isEmpty() ? null : ritorno.get(0); |
|
|
|
|
} |
|
|
|
|