Skip to content

Commit

Permalink
fix: generazione movimenti contabili fattura
Browse files Browse the repository at this point in the history
  • Loading branch information
Pek5892 committed Oct 30, 2024
1 parent ab6cedc commit 6947d44
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/fatture/src/Gestori/Movimenti.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ public function registra()

// Totali utili per i movimenti
$totale = $this->fattura->totale;
if ($totale == 0) {
return;
}

$iva_indetraibile = $this->fattura->iva_indetraibile;
$iva_detraibile = $this->fattura->iva - $iva_indetraibile;

Expand All @@ -91,7 +95,7 @@ public function registra()
*
* Totale (Split Payment disabilitato), oppure Totale - IVA detraibile (Split Payment abilitato) -> DARE per Vendita, AVERE per Acquisto
*/
$anagrafica = \Modules\Anagrafiche\Anagrafica::find(post('idanagrafica'));
$anagrafica = $this->fattura->anagrafica;

$id_conto = $is_acquisto ? $anagrafica->idconto_fornitore : $anagrafica->idconto_cliente;
if (empty($id_conto)) {
Expand Down

0 comments on commit 6947d44

Please sign in to comment.