LibreDTE / libredte-lib-core

LibreDTE: Biblioteca PHP (Núcleo)
https://lib-core.docs.libredte.cl
GNU Affero General Public License v3.0
196 stars 156 forks source link

Descuento con decimales #58

Closed Adoniasv closed 6 years ago

Adoniasv commented 6 years ago

Hola

en el namespace sasco\LibreDTE\Sii\DTE en donde dice:

// aplicar descuento 
if ($d['DescuentoPct']) {
   $d['DescuentoMonto'] = round($d['MontoItem'] * (int)$d['DescuentoPct']/100);
}
// aplicar descuento
if ($d['DescuentoPct']) {
   $d['DescuentoMonto'] = round($d['MontoItem'] * (float)$d['DescuentoPct']/100);
}

Debería ser un float, ya que muchas veces los porcentajes son en decimales.

estebandelaf commented 6 years ago

Listo: https://github.com/LibreDTE/libredte-lib/commit/9b7b51f5a24878f91f75992ad0cb50882d2f45b6