X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fview%2Fview_supp_payment.php;h=43877659b2da32bed88c6819c186b61deee89fd1;hb=0d191c7bff92b9a9bbc44dab48855477edb99ebf;hp=d6786f5538e075faafdcf226edf2e79f99094085;hpb=2a5e3a823d3091320bca214736627521e974fc7a;p=fa-stable.git diff --git a/purchasing/view/view_supp_payment.php b/purchasing/view/view_supp_payment.php index d6786f55..43877659 100644 --- a/purchasing/view/view_supp_payment.php +++ b/purchasing/view/view_supp_payment.php @@ -33,10 +33,10 @@ $company_currency = get_company_currency(); $show_currencies = false; $show_both_amounts = false; -if (($receipt['bank_curr_code'] != $company_currency) || ($receipt['SupplierCurrCode'] != $company_currency)) +if (($receipt['bank_curr_code'] != $company_currency) || ($receipt['curr_code'] != $company_currency)) $show_currencies = true; -if ($receipt['bank_curr_code'] != $receipt['SupplierCurrCode']) +if ($receipt['bank_curr_code'] != $receipt['curr_code']) { $show_currencies = true; $show_both_amounts = true; @@ -57,7 +57,7 @@ end_row(); start_row(); if ($show_currencies) label_cells(_("Payment Currency"), $receipt['bank_curr_code'], "class='tableheader2'"); -label_cells(_("Amount"), number_format2(-$receipt['BankAmount'], user_price_dec()), "class='tableheader2'"); +label_cells(_("Amount"), number_format2(-$receipt['bank_amount'], user_price_dec()), "class='tableheader2'"); if ($receipt['ov_discount'] != 0) label_cells(_("Discount"), number_format2(-$receipt['ov_discount']*$receipt['rate'], user_price_dec()), "class='tableheader2'"); else @@ -66,7 +66,7 @@ end_row(); start_row(); if ($show_currencies) { - label_cells(_("Supplier's Currency"), $receipt['SupplierCurrCode'], "class='tableheader2'"); + label_cells(_("Supplier's Currency"), $receipt['curr_code'], "class='tableheader2'"); } if ($show_both_amounts) label_cells(_("Amount"), number_format2(-$receipt['Total'], user_price_dec()), "class='tableheader2'"); @@ -91,4 +91,3 @@ if (!$voided) } end_page(true, false, false, ST_SUPPAYMENT, $trans_no); -?> \ No newline at end of file