Skip to content

Commit

Permalink
Fixing "Causale"
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Pollastri committed Feb 1, 2024
1 parent e213014 commit 34ce63b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/DatiGeneraliDocumento.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function __construct(...$args)
$this->Numero = $args[0];
$this->Data = $args[1];
$this->ImportoTotaleDocumento = $args[2];
$this->Causale = (isset($args[4]) && $args[4]) ? $args[4] : Settings::CausaleDefault();
$this->Causale = (isset($args[3]) && $args[3]) ? $args[3] : Settings::CausaleDefault();
$this->TipoDocumento = (isset($args[4]) && $args[4]) ? $args[4] : Settings::TipoDocumentoDefault();
$this->Divisa = (isset($args[5]) && $args[5]) ? $args[5] : Settings::ValutaDefault();
}
Expand Down

0 comments on commit 34ce63b

Please sign in to comment.