Fixes for tests
This commit is contained in:
parent
c04a67dfab
commit
d5689c967a
|
|
@ -298,9 +298,9 @@ class InvoiceItemSumInclusive
|
||||||
|
|
||||||
public function setLineTotal($total)
|
public function setLineTotal($total)
|
||||||
{
|
{
|
||||||
$this->item->gross_line_total = round($total + 0.000000000000004),2);
|
$this->item->gross_line_total = round(($total + 0.000000000000004),2);
|
||||||
|
|
||||||
$this->item->line_total = round($total + 0.000000000000004),2);
|
$this->item->line_total = round(($total + 0.000000000000004),2);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue