removed tax from item total

This commit is contained in:
denisdulici 2018-04-17 17:05:44 +03:00
parent 18a3a3f6cb
commit df3a15f7bd

View File

@ -282,9 +282,7 @@ class Items extends Controller
$tax_total += $item_tax_total; $tax_total += $item_tax_total;
$total = $item_sub_total + $item_tax_total; $items[$key] = money($item_sub_total, $currency_code, true)->format();
$items[$key] = money($total, $currency_code, true)->format();
} }
} }