X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fview%2Fview_grn.php;h=31126c97f05a5912fbc4917d7af73b478f11a108;hb=2571ca669208a2f17b0a5927c7bd8e688b8f3364;hp=19d0719833c373cd1ed6aa054fc37c0f558960cd;hpb=d9b4de9d7e9d3ba77f6ece752fd6cc988effd8f1;p=fa-stable.git diff --git a/purchasing/view/view_grn.php b/purchasing/view/view_grn.php index 19d07198..31126c97 100644 --- a/purchasing/view/view_grn.php +++ b/purchasing/view/view_grn.php @@ -66,9 +66,20 @@ foreach ($purchase_order->line_items as $stock_item) $total += $line_total; } -$display_total = number_format2($total,user_price_dec()); -label_row(_("Total Excluding Tax/Shipping"), $display_total, - "colspan=6", "nowrap align=right"); +$display_sub_tot = number_format2($total,user_price_dec()); +label_row(_("Sub Total"), $display_sub_tot, + "align=right colspan=6", "nowrap align=right", 1); + +$taxes = $purchase_order->get_taxes(); +$tax_total = display_edit_tax_items($taxes, 6, $purchase_order->tax_included, 1); + +$display_total = price_format(($total + $tax_total)); + +start_row(); +label_cells(_("Amount Total"), $display_total, "colspan=6 align='right'","align='right'"); +label_cell(''); +end_row(); + end_table(1);