Fix missing semicolon
This commit is contained in:
parent
83a162b4ab
commit
b6ce9d8ad8
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ class InvoiceCreator
|
|||
$batts = $criteria->getBatteries();
|
||||
foreach ($batts as $batt)
|
||||
{
|
||||
$sell_price = $batt->getSellingPrice()
|
||||
$sell_price = $batt->getSellingPrice();
|
||||
$vat = $this->getVATAmount($sell_price);
|
||||
$vat_ex_price = $this->getVATExclusivePrice($sell_price);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue