diff --git a/CHANGELOG.md b/CHANGELOG.md index d75cd09..ed12d47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.21] - 2021-10-06 +### Fixed +- Fix sconto e maggiorazione su importo #93 by danielebuso + ## [1.1.20] - 2021-10-05 ### Fixed - Fix sconto e maggiorazione su importo #92 by danielebuso diff --git a/src/FatturaElettronica/FatturaElettronicaBody/DatiBeniServizi/Linea.php b/src/FatturaElettronica/FatturaElettronicaBody/DatiBeniServizi/Linea.php index 92697a2..3f8bc72 100644 --- a/src/FatturaElettronica/FatturaElettronicaBody/DatiBeniServizi/Linea.php +++ b/src/FatturaElettronica/FatturaElettronicaBody/DatiBeniServizi/Linea.php @@ -126,7 +126,7 @@ public function prezzoTotale($format = true) foreach ($this->scontoMaggiorazione as $item) { $totale = $item->applicaScontoMaggiorazione($totale, $quantita, $format ? $this->decimaliLinea : null); } - return $totale; + return fe_number_format($totale, $this->decimaliLinea); } /**