Skip to content

Commit

Permalink
Issue #424
Browse files Browse the repository at this point in the history
Corretto problema nell'annullamento di una pendenza gia' annullata, ora l'operazione viene consentita e viene aggiornata la descrizione dell'operazione.
  • Loading branch information
pintorig committed Nov 4, 2021
1 parent da3e92c commit 36653e3
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,54 @@ And request
]
"""
When method patch
Then status 200
Then status 200

Scenario: Annullamento di una pendenza annullata

* def backofficeBasicBaseurl = getGovPayApiBaseUrl({api: 'backoffice', versione: 'v1', autenticazione: 'spid'})

Given url backofficeBasicBaseurl
And path '/pendenze', idA2A, idPendenza
And headers operatoreSpid2AutenticationHeader
And request
"""
[
{ "op":"REPLACE","path":"/stato","value":"ANNULLATA"},
{"op":"REPLACE","path":"/descrizioneStato","value":"Test annullamento"}
]
"""
When method patch
Then status 200

Given url backofficeBasicBaseurl
And path '/pendenze', idA2A, idPendenza
And headers operatoreSpid2AutenticationHeader
When method get
Then status 200
And match response.stato == 'ANNULLATA'
And match response.descrizioneStato == 'Test annullamento'


Given url backofficeBasicBaseurl
And path '/pendenze', idA2A, idPendenza
And headers operatoreSpid2AutenticationHeader
And request
"""
[
{ "op":"REPLACE","path":"/stato","value":"ANNULLATA"},
{"op":"REPLACE","path":"/descrizioneStato","value":"Test annullamento 2"}
]
"""
When method patch
Then status 200

Given url backofficeBasicBaseurl
And path '/pendenze', idA2A, idPendenza
And headers operatoreSpid2AutenticationHeader
When method get
Then status 200
And match response.stato == 'ANNULLATA'
And match response.descrizioneStato == 'Test annullamento 2'



Original file line number Diff line number Diff line change
Expand Up @@ -767,14 +767,15 @@ private void patchStato(Authentication authentication, it.govpay.bd.model.Versam

switch (nuovoStato) {
case ANNULLATO:
if(versamentoLetto.getStatoVersamento().equals(StatoVersamento.NON_ESEGUITO)) {
if(versamentoLetto.getStatoVersamento().equals(StatoVersamento.NON_ESEGUITO)
|| versamentoLetto.getStatoVersamento().equals(StatoVersamento.ANNULLATO)) {
versamentoLetto.setStatoVersamento(StatoVersamento.ANNULLATO);
versamentoLetto.setAvvisoNotificato(null);
versamentoLetto.setAvvAppIOPromemoriaScadenzaNotificato(null);
versamentoLetto.setAvvMailPromemoriaScadenzaNotificato(null);
// eventoUtente.setDettaglioEsito("Pendenza annullata");
} else {
throw new ValidationException("Non e' consentito aggiornare lo stato di una pendenza ad ANNULLATO da uno stato diverso da NON_ESEGUITO");
throw new ValidationException("Non e' consentito aggiornare lo stato di una pendenza ad ANNULLATO da uno stato diverso da NON_ESEGUITO o ANNULLATO");
}
break;
case NON_ESEGUITO:
Expand Down

0 comments on commit 36653e3

Please sign in to comment.