From 6a26a9c96379ef1dce88c995fe861579f3ac7d01 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sun, 12 Jul 2009 07:51:18 +0000 Subject: [PATCH] Wrong presentation of left to allocate if discount was given --- CHANGELOG.txt | 5 +++++ purchasing/view/view_supp_payment.php | 4 ++-- sales/view/view_receipt.php | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4ce7516c..a4218d5f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,11 @@ Legend: ! -> Note $ -> Affected files +12-Jul-2009 Joe Hunt +# Wrong presentation of left to allocate if discount was given +$ /sales/view/view_receipt.php + /purchasing/view/view_supp_payment.php + 11-Jul-2009 Joe Hunt ! Improved Inventory Sales Report. Now by Customer and quantities as well. $ /reporting/rep304.php diff --git a/purchasing/view/view_supp_payment.php b/purchasing/view/view_supp_payment.php index 3b6d7533..793f6d41 100644 --- a/purchasing/view/view_supp_payment.php +++ b/purchasing/view/view_supp_payment.php @@ -66,7 +66,7 @@ if ($show_currencies) label_cells(_("Supplier's Currency"), $receipt['SupplierCurrCode'], "class='tableheader2'"); } if ($show_both_amounts) - label_cells(_("Amount"), number_format2(-$receipt['ov_amount'], user_price_dec()), "class='tableheader2'"); + label_cells(_("Amount"), number_format2(-$receipt['Total'], user_price_dec()), "class='tableheader2'"); label_cells(_("Reference"), $receipt['ref'], "class='tableheader2'"); end_row(); comments_display_row(22, $trans_no); @@ -78,7 +78,7 @@ $voided = is_voided_display(22, $trans_no, _("This payment has been voided.")); // now display the allocations for this payment if (!$voided) { - display_allocations_from(payment_person_types::supplier(), $receipt['supplier_id'], 22, $trans_no, -$receipt['ov_amount']); + display_allocations_from(payment_person_types::supplier(), $receipt['supplier_id'], 22, $trans_no, -$receipt['Total']); } end_page(true); diff --git a/sales/view/view_receipt.php b/sales/view/view_receipt.php index 10dfd0c8..458e9071 100644 --- a/sales/view/view_receipt.php +++ b/sales/view/view_receipt.php @@ -41,7 +41,7 @@ label_cells(_("Date of Deposit"), sql2date($receipt['tran_date']), "class='table end_row(); start_row(); label_cells(_("Payment Currency"), $receipt['curr_code'], "class='tableheader2'"); -label_cells(_("Amount"), price_format($receipt['ov_amount']), "class='tableheader2'"); +label_cells(_("Amount"), price_format($receipt['Total'] - $receipt['ov_discount']), "class='tableheader2'"); label_cells(_("Discount"), price_format($receipt['ov_discount']), "class='tableheader2'"); end_row(); start_row(); -- 2.30.2