Fixes for tests

This commit is contained in:
David Bomba 2024-12-13 12:58:34 +11:00
parent c04a67dfab
commit d5689c967a
1 changed files with 2 additions and 2 deletions

View File

@ -298,9 +298,9 @@ class InvoiceItemSumInclusive
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;
}