Skip to content

Commit

Permalink
Issue #644 (#648)
Browse files Browse the repository at this point in the history
Rilassato vincolo di obbligatorieta' per il campo soggettoPagatore di una pendenza e i suoi campi obbligatori.
Nel caso la pendenza da caricare rientri in questi casi verra' impostato il valore ANONIMO per i campi obbligatori.
  • Loading branch information
pintorig committed Oct 27, 2023
1 parent ff3f798 commit 0e92572
Show file tree
Hide file tree
Showing 40 changed files with 429 additions and 690 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,40 @@ Examples:
| direzione | 'Direzione_Test' |
| direzione | null |
| divisione | 'Divisione_Test' |
| divisione | null |
| divisione | null |


Scenario Outline: Caricamento pendenza con controllo del campo opzionale <field>

* set pendenzaPut.<field> = <value>

Given url pendenzeBaseurl
And path '/pendenze', idA2A, idPendenza
And headers idA2ABasicAutenticationHeader
And request pendenzaPut
When method put
Then status 201

* def checkValue = <retValue> != null ? <retValue> : '#notpresent'

Given url pendenzeBaseurl
And path '/pendenze', idA2A, idPendenza
And headers idA2ABasicAutenticationHeader
When method get
Then status 200
And match response.<field> == checkValue

Examples:
| field | value | retValue |
| soggettoPagatore | null | {"identificativo":"ANONIMO","anagrafica":"ANONIMO"} |
| soggettoPagatore.identificativo | null | 'ANONIMO' |
| soggettoPagatore.identificativo | '' | 'ANONIMO' |
| soggettoPagatore.identificativo | ' ' | 'ANONIMO' |
| soggettoPagatore.identificativo | 'ANONIMO' | 'ANONIMO' |
| soggettoPagatore.anagrafica | null | 'ANONIMO' |
| soggettoPagatore.anagrafica | '' | 'ANONIMO' |
| soggettoPagatore.anagrafica | ' ' | 'ANONIMO' |
| soggettoPagatore.anagrafica | 'ANONIMO' | 'ANONIMO' |
| soggettoPagatore.tipo | null | null |


Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ Examples:
| dataValidita | pendenzaPut.dataScadenza | '2030-19-40' | 'dataScadenza' |
| annoRiferimento | pendenzaPut.annoRiferimento | 'aaaa' | 'annoRiferimento' |
| tassonomiaAvviso | pendenzaPut.tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | loremIpsum | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | 'a' | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | 'a' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '12345678901234567' | 'identificativo' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
# | soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | loremIpsum | 'anagrafica' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | '' | 'indirizzo' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | loremIpsum | 'indirizzo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ Examples:
| dataValidita | pendenzaPut.dataScadenza | '2030-19-40' | 'dataScadenza' |
| annoRiferimento | pendenzaPut.annoRiferimento | 'aaaa' | 'annoRiferimento' |
| tassonomiaAvviso | pendenzaPut.tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| soggettoPagatore | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
# | soggettoPagatore | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | loremIpsum | 'identificativo' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
# | soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | loremIpsum | 'anagrafica' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | '' | 'indirizzo' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | loremIpsum | 'indirizzo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ Examples:
| dataValidita | pendenzaPut.dataScadenza | '2030-19-40' | 'dataScadenza' |
| annoRiferimento | pendenzaPut.annoRiferimento | 'aaaa' | 'annoRiferimento' |
| tassonomiaAvviso | pendenzaPut.tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| soggettoPagatore | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
# | soggettoPagatore | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | loremIpsum | 'identificativo' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
# | soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | loremIpsum | 'anagrafica' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | '' | 'indirizzo' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | loremIpsum | 'indirizzo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Examples:
| field | fieldRequest | fieldValue | fieldResponse |
| urlRitorno | pagamentoPost.urlRitorno | 'htttttp://sbagliata.it' | 'urlRitorno' |
| dataPagamento | pagamentoPost.dataEsecuzionePagamento | '2030-19-40' | 'dataEsecuzionePagamento' |
| soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | null | 'tipo' |
# | soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | null | 'tipo' |
| soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | 'X' | 'tipo' |
| soggettoVersante.identificativo | pagamentoPost.soggettoVersante.identificativo | null | 'identificativo' |
| soggettoVersante.identificativo | pagamentoPost.soggettoVersante.identificativo | '' | 'identificativo' |
Expand Down Expand Up @@ -68,8 +68,8 @@ Examples:
| pendenze.dataValidita | pagamentoPost.pendenze[0].dataScadenza | '2030-19-40' | 'dataScadenza' |
| pendenze.annoRiferimento | pagamentoPost.pendenze[0].annoRiferimento | 'aaaa' | 'annoRiferimento' |
| pendenze.tassonomiaAvviso | pagamentoPost.pendenze[0].tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore | null | 'soggettoPagatore' |
| pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | null | 'tipo' |
# | pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore | null | 'soggettoPagatore' |
# | pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | null | 'tipo' |
| pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | 'X' | 'tipo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | null | 'identificativo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | '' | 'identificativo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,13 +233,13 @@ Examples:
| dataValidita | pendenzaPut.dataScadenza | '2030-19-40' | 'dataScadenza' |
| annoRiferimento | pendenzaPut.annoRiferimento | 'aaaa' | 'annoRiferimento' |
| tassonomiaAvviso | pendenzaPut.tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| soggettoPagatore | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
# | soggettoPagatore | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | loremIpsum | 'identificativo' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
# | soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | loremIpsum | 'anagrafica' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | '' | 'indirizzo' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | loremIpsum | 'indirizzo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Examples:
| field | fieldRequest | fieldValue | fieldResponse |
| urlRitorno | pagamentoPost.urlRitorno | 'htttttp://sbagliata.it' | 'urlRitorno' |
| dataPagamento | pagamentoPost.dataEsecuzionePagamento | '2030-19-40' | 'dataEsecuzionePagamento' |
| soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | null | 'tipo' |
| soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | 'X' | 'tipo' |
# | soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | null | 'tipo' |
# | soggettoVersante.tipo | pagamentoPost.soggettoVersante.tipo | 'X' | 'tipo' |
| soggettoVersante.identificativo | pagamentoPost.soggettoVersante.identificativo | null | 'identificativo' |
| soggettoVersante.identificativo | pagamentoPost.soggettoVersante.identificativo | '' | 'identificativo' |
| soggettoVersante.identificativo | pagamentoPost.soggettoVersante.identificativo | loremIpsum | 'identificativo' |
Expand Down Expand Up @@ -67,15 +67,15 @@ Examples:
| pendenze.dataValidita | pagamentoPost.pendenze[0].dataScadenza | '2030-19-40' | 'dataScadenza' |
| pendenze.annoRiferimento | pagamentoPost.pendenze[0].annoRiferimento | 'aaaa' | 'annoRiferimento' |
| pendenze.tassonomiaAvviso | pagamentoPost.pendenze[0].tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore | null | 'soggettoPagatore' |
| pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | null | 'tipo' |
| pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | 'X' | 'tipo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | null | 'identificativo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | '' | 'identificativo' |
# | pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore | null | 'soggettoPagatore' |
# | pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | null | 'tipo' |
# | pendenze.soggettoPagatore.tipo | pagamentoPost.pendenze[0].soggettoPagatore.tipo | 'X' | 'tipo' |
# | pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | null | 'identificativo' |
# | pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | '' | 'identificativo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | loremIpsum | 'identificativo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | 'a' | 'identificativo' |
# | pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | 'a' | 'identificativo' |
| pendenze.soggettoPagatore.identificativo | pagamentoPost.pendenze[0].soggettoPagatore.identificativo | '12345678901234567' | 'identificativo' |
| pendenze.soggettoPagatore.anagrafica | pagamentoPost.pendenze[0].soggettoPagatore.anagrafica | '' | 'anagrafica' |
# | pendenze.soggettoPagatore.anagrafica | pagamentoPost.pendenze[0].soggettoPagatore.anagrafica | '' | 'anagrafica' |
| pendenze.soggettoPagatore.anagrafica | pagamentoPost.pendenze[0].soggettoPagatore.anagrafica | loremIpsum | 'anagrafica' |
| pendenze.soggettoPagatore.indirizzo | pagamentoPost.pendenze[0].soggettoPagatore.indirizzo | '' | 'indirizzo' |
| pendenze.soggettoPagatore.indirizzo | pagamentoPost.pendenze[0].soggettoPagatore.indirizzo | loremIpsum | 'indirizzo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Examples:
| annoRiferimento | pendenzaPut.annoRiferimento | 'aaaa' | 'annoRiferimento' |
| tassonomiaAvviso | pendenzaPut.tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,40 @@ Examples:
| direzione | 'Direzione_Test' |
| direzione | null |
| divisione | 'Divisione_Test' |
| divisione | null |
| divisione | null |

Scenario Outline: Caricamento pendenza con controllo del campo opzionale <field>

* set pendenzaPut.<field> = <value>

Given url pendenzeBaseurl
And path '/pendenze', idA2A, idPendenza
And headers idA2ABasicAutenticationHeader
And request pendenzaPut
When method put
Then status 201

* def checkValue = <retValue> != null ? <retValue> : '#notpresent'

Given url pendenzeBaseurl
And path '/pendenze', idA2A, idPendenza
And headers idA2ABasicAutenticationHeader
When method get
Then status 200
And match response.<field> == checkValue

Examples:
| field | value | retValue |
| soggettoPagatore | null | {"identificativo":"ANONIMO","anagrafica":"ANONIMO"} |
| soggettoPagatore.identificativo | null | 'ANONIMO' |
| soggettoPagatore.identificativo | '' | 'ANONIMO' |
| soggettoPagatore.identificativo | ' ' | 'ANONIMO' |
| soggettoPagatore.identificativo | 'ANONIMO' | 'ANONIMO' |
| soggettoPagatore.anagrafica | null | 'ANONIMO' |
| soggettoPagatore.anagrafica | '' | 'ANONIMO' |
| soggettoPagatore.anagrafica | ' ' | 'ANONIMO' |
| soggettoPagatore.anagrafica | 'ANONIMO' | 'ANONIMO' |
| soggettoPagatore.tipo | null | null |



Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ Examples:
| dataValidita | pendenzaPut.dataScadenza | '2030-19-40' | 'dataScadenza' |
| annoRiferimento | pendenzaPut.annoRiferimento | 'aaaa' | 'annoRiferimento' |
| tassonomiaAvviso | pendenzaPut.tassonomiaAvviso | 'xxxx' | 'tassonomiaAvviso' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
| soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore | null | 'soggettoPagatore' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | null | 'tipo' |
# | soggettoPagatore.tipo | pendenzaPut.soggettoPagatore.tipo | 'X' | 'tipo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | null | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | loremIpsum | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | 'a' | 'identificativo' |
# | soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | 'a' | 'identificativo' |
| soggettoPagatore.identificativo | pendenzaPut.soggettoPagatore.identificativo | '12345678901234567' | 'identificativo' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | null | 'anagrafica' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
# | soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | null | 'anagrafica' |
# | soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | '' | 'anagrafica' |
| soggettoPagatore.anagrafica | pendenzaPut.soggettoPagatore.anagrafica | loremIpsum | 'anagrafica' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | '' | 'indirizzo' |
| soggettoPagatore.indirizzo | pendenzaPut.soggettoPagatore.indirizzo | loremIpsum | 'indirizzo' |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ public class Costanti {

public static final String VERIFICA_PENDENZE_GET_AVVISO_OPERATION_ID = "verificaAvviso";
public static final String VERIFICA_PENDENZE_VERIFY_PENDENZA_OPERATION_ID = "verificaPendenza";

/** GESTIONE AVVISI CON DEBITORE ANONIMO */
public static final String IDENTIFICATIVO_DEBITORE_ANONIMO = "ANONIMO";
}

0 comments on commit 0e92572

Please sign in to comment.