@ -97,22 +97,28 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
* to access the asseverazione local service .
* to access the asseverazione local service .
* /
* /
private static final Log _log = LogFactoryUtil . getLog ( AsseverazioneLocalServiceImpl . class ) ;
@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 ) ;
@ -138,16 +144,15 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
User user = UserLocalServiceUtil . fetchUserByScreenName ( dettPratica . getCompanyId ( ) , codiceFiscale ) ;
User user = UserLocalServiceUtil . fetchUserByScreenName ( dettPratica . getCompanyId ( ) , codiceFiscale ) ;
if ( Validator . isNotNull ( user ) ) {
if ( Validator . isNotNull ( user ) ) {
return testoAsseverazione ( tipo , user . getFirstName ( ) , user . getLastName ( ) , user . getScreenName ( ) ,
return testoAsseverazione ( tipo , user . getFirstName ( ) , user . getLastName ( ) , user . getScreenName ( ) ,
StringPool . BLANK , dettPratica , relazioni , anteprima , StringPool . BLANK ,
StringPool . BLANK , dettPratica , relazioni , anteprima , StringPool . BLANK , StringPool . BLANK ,
StringPool . BLANK , StringPool . BLANK ) ;
StringPool . BLANK ) ;
}
}
return null ;
return null ;
}
}
private String testoAsseverazione ( String tipo , String nome , String cognome , String codiceFiscale ,
private String testoAsseverazione ( String tipo , String nome , String cognome , String codiceFiscale ,
String ambitoProfessione , DettPratica dettPratica , String relazioni , boolean anteprima , String albo ,
String ambitoProfessione , DettPratica dettPratica , String relazioni , boolean anteprima ,
String albon , String albop )
String albo , String albon , String albop ) throws IOException , SystemException , PortalException {
throws IOException , SystemException , PortalException {
String file = null ;
String file = null ;
switch ( tipo ) {
switch ( tipo ) {
@ -167,15 +172,19 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
file = "geologo" ;
file = "geologo" ;
break ;
break ;
case TipoSoggettoUtil . PROGETTISTA :
case TipoSoggettoUtil . PROGETTISTA :
if ( Validator . isNull ( ambitoProfessione ) | | ambitoProfessione . equalsIgnoreCase ( "architettonico" ) | | ambitoProfessione . equalsIgnoreCase ( "altro" ) ) {
if ( Validator . isNull ( ambitoProfessione ) | | ambitoProfessione . equalsIgnoreCase ( "architettonico" )
| | ambitoProfessione . equalsIgnoreCase ( "altro" ) ) {
file = "progettista_architettonico" ;
file = "progettista_architettonico" ;
} else {
} else {
file = "calcolista" ;
file = "calcolista" ;
}
}
break ;
break ;
/ * case TipoSoggettoUtil . ARCHEOLOGO :
case TipoSoggettoUtil . TITOLARE_DIGITALE :
file = "calcolista" ;
file = "titolare_digitale" ;
break ; * /
break ;
/ *
* case TipoSoggettoUtil . ARCHEOLOGO : file = "calcolista" ; break ;
* /
default :
default :
return null ;
return null ;
}
}
@ -253,10 +262,8 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
. replace ( "{{nonrilevanti}}" , nonRilevanti ? "X" : " " )
. replace ( "{{nonrilevanti}}" , nonRilevanti ? "X" : " " )
. replace ( "{{riparazioni}}" , riparazioni ? "X" : " " )
. replace ( "{{riparazioni}}" , riparazioni ? "X" : " " )
. replace ( "{{rischio}}" , rischio ? "X" : " " ) . replace ( "{{!rischio}}" , rischio ? " " : "X" )
. replace ( "{{rischio}}" , rischio ? "X" : " " ) . replace ( "{{!rischio}}" , rischio ? " " : "X" )
. replace ( "{{strategico}}" , strategico ? "X" : " " )
. replace ( "{{strategico}}" , strategico ? "X" : " " ) . replace ( "{{albo}}" , albo )
. replace ( "{{albo}}" , albo )
. replace ( "{{albop}}" , albop ) . replace ( "{{albon}}" , albon ) ;
. replace ( "{{albop}}" , albop )
. replace ( "{{albon}}" , albon ) ;
if ( null = = relazioni ) {
if ( null = = relazioni ) {
html = html . replace ( "{{coniugio}}" , " " ) . replace ( "{{!coniugio}}" , " " )
html = html . replace ( "{{coniugio}}" , " " ) . replace ( "{{!coniugio}}" , " " )
@ -269,6 +276,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 {
@ -303,6 +311,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 {
@ -322,6 +331,7 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
TipoSoggettoUtil . COMMITTENTE , TipoSoggettoUtil . DIRETTORE_LAVORI ,
TipoSoggettoUtil . COMMITTENTE , TipoSoggettoUtil . DIRETTORE_LAVORI ,
TipoSoggettoUtil . GEOLOGO , TipoSoggettoUtil . DITTA , TipoSoggettoUtil . PROGETTISTA } ,
TipoSoggettoUtil . GEOLOGO , TipoSoggettoUtil . DITTA , TipoSoggettoUtil . PROGETTISTA } ,
new String [ ] { AsseverazioniUtil . STATO_ESEGUITA } ) ) ;
new String [ ] { AsseverazioniUtil . STATO_ESEGUITA } ) ) ;
nuoviDelegati . removeAll ( cfNuoviSoggetti ) ;
nuoviDelegati . removeAll ( cfNuoviSoggetti ) ;
for ( String cfDelegato : nuoviDelegati ) {
for ( String cfDelegato : nuoviDelegati ) {
List < Soggetto > delegato = soggettoLocalService . getValidTmpByIntPratica_CodiceFiscale (
List < Soggetto > delegato = soggettoLocalService . getValidTmpByIntPratica_CodiceFiscale (
@ -332,24 +342,21 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
if ( TipoIntegrazioneUtil . RICHIESTA_INTEGRAZIONE . equalsIgnoreCase ( dettPratica
if ( TipoIntegrazioneUtil . RICHIESTA_INTEGRAZIONE . equalsIgnoreCase ( dettPratica
. getTipoIntegrazione ( ) ) ) {
. getTipoIntegrazione ( ) ) ) {
User titolaredigitaleUser = UserLocalServiceUtil . getUser ( intPratica . getUserId ( ) ) ;
User titolaredigitaleUser = UserLocalServiceUtil . getUser ( intPratica . getUserId ( ) ) ;
// Soggetto titolareDigitale =
// soggettoLocalService.getValidTmpByIntPratica_CodiceFiscale(intPraticaId,
// titolaredigitaleUser.getScreenName()).get(0);
// addAsseverazione(serviceContext.getUserId(),
// dettPratica.getIntPraticaId(),
// dettPraticaId,
// titolareDigitale.getTipologiaSoggetto(),
// titolareDigitale.getCodiceFiscale(),
// serviceContext);
// il titolare digitale potrebbe avere più ruoli
// il titolare digitale potrebbe avere più ruoli
List < Soggetto > titolareDigitali = soggettoLocalService . getValidTmpByIntPratica_CodiceFiscale (
List < Soggetto > titolareDigitali = soggettoLocalService . getValidTmpByIntPratica_CodiceFiscale (
intPraticaId , titolaredigitaleUser . getScreenName ( ) , 0l ) ;
intPraticaId , titolaredigitaleUser . getScreenName ( ) , 0l ) ;
if ( titolareDigitali . isEmpty ( ) ) {
addAsseverazione ( titolaredigitaleUser . getUserId ( ) , dettPratica . getIntPraticaId ( ) ,
dettPraticaId , TipoSoggettoUtil . TITOLARE_DIGITALE ,
titolaredigitaleUser . getScreenName ( ) , serviceContext ) ;
} else {
for ( Soggetto titolareDigitale : titolareDigitali ) {
for ( Soggetto titolareDigitale : titolareDigitali ) {
addAsseverazione ( serviceContext . getUserId ( ) , dettPratica . getIntPraticaId ( ) ,
addAsseverazione ( serviceContext . getUserId ( ) , dettPratica . getIntPraticaId ( ) ,
dettPraticaId , titolareDigitale . getTipologiaSoggetto ( ) ,
dettPraticaId , titolareDigitale . getTipologiaSoggetto ( ) ,
titolareDigitale . getCodiceFiscale ( ) , serviceContext ) ;
titolareDigitale . getCodiceFiscale ( ) , serviceContext ) ;
}
}
}
} else if ( TipoIntegrazioneUtil . VARIANTE . equalsIgnoreCase ( dettPratica . getTipoIntegrazione ( ) ) ) {
} else if ( TipoIntegrazioneUtil . VARIANTE . equalsIgnoreCase ( dettPratica . getTipoIntegrazione ( ) ) ) {
String [ ] tipoSoggetti = new String [ ] { TipoSoggettoUtil . COMMITTENTE ,
String [ ] tipoSoggetti = new String [ ] { TipoSoggettoUtil . COMMITTENTE ,
@ -395,6 +402,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 ) ;
@ -411,11 +419,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 {
@ -433,6 +443,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 {
@ -488,7 +499,8 @@ public class AsseverazioneLocalServiceImpl extends AsseverazioneLocalServiceBase
IntPratica intPratica = IntPraticaLocalServiceUtil . getIntPratica ( asseverazione . getIntPraticaId ( ) ) ;
IntPratica intPratica = IntPraticaLocalServiceUtil . getIntPratica ( asseverazione . getIntPraticaId ( ) ) ;
Territorio territorio = TerritorioLocalServiceUtil . getTerritorio ( intPratica . getTerritorioId ( ) ) ;
Territorio territorio = TerritorioLocalServiceUtil . getTerritorio ( intPratica . getTerritorioId ( ) ) ;
Comune comune = ComuneLocalServiceUtil . getComune ( territorio . getComuneId ( ) ) ;
Comune comune = ComuneLocalServiceUtil . getComune ( territorio . getComuneId ( ) ) ;
Provincia provincia = ProvinciaLocalServiceUtil . fetchByC_C ( asseverazione . getCompanyId ( ) , comune . getCodiceProvincia ( ) ) ;
Provincia provincia = ProvinciaLocalServiceUtil . fetchByC_C ( asseverazione . getCompanyId ( ) ,
comune . getCodiceProvincia ( ) ) ;
parameters . put ( "html" , testoAsseverazione ) ;
parameters . put ( "html" , testoAsseverazione ) ;
parameters . put ( "modello" , asseverazione . getModello ( ) ) ;
parameters . put ( "modello" , asseverazione . getModello ( ) ) ;
@ -512,6 +524,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 {
@ -521,6 +534,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 {
@ -533,6 +547,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 ) ;
@ -568,6 +583,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 {
@ -615,28 +631,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 {
@ -644,12 +665,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 {
@ -657,11 +680,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 {
@ -670,6 +695,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 {
@ -678,6 +704,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 {
@ -685,6 +712,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 {
@ -692,6 +720,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 {
@ -699,11 +728,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 {
@ -711,11 +742,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 {
@ -723,6 +756,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 {
@ -730,6 +764,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 {
@ -738,6 +773,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 {
@ -745,6 +781,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 {
@ -752,6 +789,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 {
@ -759,12 +797,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 {