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