Skip to content

Commit

Permalink
Fix minore
Browse files Browse the repository at this point in the history
  • Loading branch information
Pek5892 committed Sep 26, 2024
1 parent 3d4acdf commit bf294f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion modules/fatture/controller_before.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
if ($documento->codice_stato_fe == 'NS' && ($documento->stato != Stato::where('name', 'Bozza')->first()->id) && ($documento->stato != Stato::where('name', 'Non valida')->first()->id)) {
$ricevuta_principale = $documento->getRicevutaPrincipale();


if (!empty($ricevuta_principale)) {
$contenuto_ricevuta = XML::readFile($ricevuta_principale->filepath);
$contenuto_ricevuta = XML::readFile(base_dir().'/files/fatture/'.$ricevuta_principale->filename);
$lista_errori = $contenuto_ricevuta['ListaErrori'];
if ($lista_errori) {
$lista_errori = $lista_errori[0] ? $lista_errori : [$lista_errori];
Expand Down
2 changes: 1 addition & 1 deletion plugins/receiptFE/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

$ricevuta_principale = $fattura_generata->getRicevutaPrincipale();
if (!empty($ricevuta_principale)) {
$contenuto_ricevuta = XML::readFile($ricevuta_principale->filepath);
$contenuto_ricevuta = XML::readFile(base_dir().'/files/fatture/'.$ricevuta_principale->filename);

// Informazioni aggiuntive per EC02
if (!empty($contenuto_ricevuta['EsitoCommittente'])) {
Expand Down

0 comments on commit bf294f9

Please sign in to comment.