Fix missing semicolon

This commit is contained in:
Kendrick Chan 2018-02-01 03:00:17 +08:00
parent 83a162b4ab
commit b6ce9d8ad8

View file

@ -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);