Merge pull request #994 from lepool/master

Fix marca da bollo automatica al cliente
This commit is contained in:
loviuz 2021-11-02 23:55:18 +01:00 committed by GitHub
commit 8a50f51a63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class Bollo
$righe_bollo = $this->fattura->getRighe()->filter(function ($item, $key) {
return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N1', 'N2.1', 'N2.2', 'N3.1', 'N3.2', 'N3.3', 'N3.4', 'N3.5', 'N3.6', 'N4']);
});
$importo_righe_bollo = $righe_bollo->sum('netto');
$importo_righe_bollo = $righe_bollo->sum('totale_imponibile');
// Leggo la marca da bollo se c'è e se il netto a pagare supera la soglia
$bollo = ($this->fattura->direzione == 'uscita') ? $this->fattura->bollo : setting('Importo marca da bollo');