Skip to content

Commit

Permalink
fix: esportazione presentazioni bancarie
Browse files Browse the repository at this point in the history
  • Loading branch information
Pek5892 committed Nov 5, 2024
1 parent d3e5fd0 commit 9f25fca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugins/presentazioni_bancarie/src/Cbi/RiBa.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ public function asCBI()
if ($intestazione->soggetto_veicolatore != '') {
$ib->tipo_flusso = 1;
$ib->qualificatore_flusso = '$';
$ib->soggetto_veicolatore = $intestazione->soggetto_veicolatore;
}
$ib->soggetto_veicolatore = $intestazione->soggetto_veicolatore;

$contenuto .= $ib->toCBI().$eol;

// Iterazione tra le ricevute interne al RiBa
Expand Down Expand Up @@ -154,7 +155,7 @@ public function asCBI()
$r50->numero_progressivo = $progressivo;
$r50->partita_iva_o_codice_fiscale_creditore = $intestazione->partita_iva_o_codice_fiscale_creditore;
$r50->riferimento_debito_1 = $ricevuta->descrizione;
$r50->riferimento_debito_2 = $ricevuta->descrizione_origine;
$r50->riferimento_debito_2 = $ricevuta->descrizione_origine ?: '';
$contenuto .= $r50->toCBI().$eol;

// Record 51
Expand Down

0 comments on commit 9f25fca

Please sign in to comment.