Revert commit movimento reverse charge

This commit is contained in:
MatteoPistorello 2022-05-17 16:25:02 +02:00
parent caa722b529
commit cefbec3bdb
1 changed files with 0 additions and 20 deletions

View File

@ -20,7 +20,6 @@
namespace Modules\Fatture\Gestori;
use Modules\Fatture\Fattura;
use Modules\Iva\Aliquota;
use Modules\PrimaNota\Mastrino;
use Modules\PrimaNota\Movimento;
@ -76,7 +75,6 @@ class Movimenti
$is_acquisto = $direzione == 'uscita';
$split_payment = $this->fattura->split_payment;
$is_nota = $this->fattura->isNota();
$reverse_charge = 0;
// Totali utili per i movimenti
$totale = $this->fattura->totale;
@ -135,10 +133,6 @@ class Movimenti
'avere' => $imponibile,
];
}
if (substr($riga->aliquota->codice_natura_fe, 0, 2) == 'N6' && $is_acquisto) {
$reverse_charge += $riga->totale_imponibile;
}
}
/*
@ -165,20 +159,6 @@ class Movimenti
];
}
/*
* Reverse charge
* Viene registrato solo il movimento impostando l'iva predefinita (l'iva della riga rimane a 0)
*/
if($reverse_charge) {
$id_conto = setting('Conto per Iva su acquisti');
$iva_predefinita = floatval(Aliquota::find(setting('Iva predefinita'))->percentuale);
$iva_reverse_charge = $reverse_charge * $iva_predefinita / 100;
$movimenti[] = [
'id_conto' => $id_conto,
'avere' => $iva_reverse_charge,
];
}
/*
* 5) Rivalsa INPS sul relativo conto
* Rivalsa INPS (senza IVA) -> AVERE per Vendita, DARE per Acquisto