1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Stubs for rappen rounding

This commit is contained in:
David Bomba 2024-03-15 11:32:27 +11:00
parent d3c286dacc
commit 1595c9d1f7
2 changed files with 2 additions and 0 deletions

View File

@ -250,6 +250,7 @@ class InvoiceSum
}
}
/* Set new calculated total */
/** @todo - rappen rounding here */
$this->invoice->amount = $this->formatValue($this->getTotal(), $this->precision);
$this->invoice->total_taxes = $this->getTotalTaxes();

View File

@ -268,6 +268,7 @@ class InvoiceSumInclusive
}
/* Set new calculated total */
/** @todo - rappen rounding here */
$this->invoice->amount = $this->formatValue($this->getTotal(), $this->precision);
$this->invoice->total_taxes = $this->getTotalTaxes();