Skip to content

Commit

Permalink
Merge branch '3.5.x' of github.com:link-it/GovPay into 3.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pintorig committed Feb 4, 2022
2 parents 4dfe858 + 9b22cd1 commit 02facfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ public static void impostaAnagraficaDebitore(Anagrafica anagraficaDebitore, Avvi
// Inserisco la virgola se la prima riga non e' vuota
String indirizzoDestinatario = StringUtils.isNotEmpty(indirizzoCivicoDebitore) ? indirizzoCivicoDebitore + "," : "";
input.setNomeCognomeDestinatario(anagraficaDebitore.getRagioneSociale());
input.setCfDestinatario(anagraficaDebitore.getCodUnivoco());
input.setCfDestinatario(anagraficaDebitore.getCodUnivoco().toUpperCase());

if(indirizzoDestinatario.length() > AvvisoPagamentoCostanti.AVVISO_LUNGHEZZA_CAMPO_INDIRIZZO_DESTINATARIO) {
input.setIndirizzoDestinatario1(indirizzoDestinatario);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ public static void impostaAnagraficaDebitore(Anagrafica anagraficaDebitore, Avvi
// Inserisco la virgola se la prima riga non e' vuota
String indirizzoDestinatario = StringUtils.isNotEmpty(indirizzoCivicoDebitore) ? indirizzoCivicoDebitore + "," : "";
input.setNomeCognomeDestinatario(anagraficaDebitore.getRagioneSociale());
input.setCfDestinatario(anagraficaDebitore.getCodUnivoco());
input.setCfDestinatario(anagraficaDebitore.getCodUnivoco().toUpperCase());

if(indirizzoDestinatario.length() > AvvisoPagamentoCostanti.AVVISO_LUNGHEZZA_CAMPO_INDIRIZZO_DESTINATARIO) {
input.setIndirizzoDestinatario1(indirizzoDestinatario);
Expand Down

0 comments on commit 02facfb

Please sign in to comment.