Fixed total tax not displaying for quote

This commit is contained in:
johnny@pittpc.com
2019-08-26 18:42:11 -04:00
parent ceef449e37
commit 2e270a7f4e
2 changed files with 21 additions and 3 deletions

View File

@@ -169,7 +169,7 @@ if(isset($_GET['quote_id'])){
$item_subtotal = $row['item_price'];
$item_tax = $row['item_tax'];
$item_total = $row['item_total'];
$total_tax = $item_tax + $invoice_tax;
$total_tax = $item_tax + $total_tax;
$sub_total = $item_price * $item_quantity + $sub_total;
?>