X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fview%2Fview_supp_payment.php;h=ecdee25a20eca4a901600c10212cade155e82900;hb=4052beb0e908e206956eee5b479de283173d1801;hp=34fa9576121f52918a9ba028376f2363ebfe9a7e;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/purchasing/view/view_supp_payment.php b/purchasing/view/view_supp_payment.php index 34fa9576..ecdee25a 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; @@ -47,7 +47,7 @@ echo "
"; display_heading(_("Payment to Supplier") . " #$trans_no"); echo "
"; -start_table("$table_style2 width=80%"); +start_table(TABLESTYLE2, "width='80%'"); start_row(); label_cells(_("To Supplier"), $receipt['supplier_name'], "class='tableheader2'"); @@ -57,18 +57,27 @@ 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(_("Payment Type"), $bank_transfer_types[$receipt['BankTransType']], "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 + label_cells(_("Payment Type"), $bank_transfer_types[$receipt['BankTransType']], "class='tableheader2'"); 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'"); label_cells(_("Reference"), $receipt['ref'], "class='tableheader2'"); end_row(); +if ($receipt['ov_discount'] != 0) +{ + start_row(); + label_cells(_("Payment Type"), $bank_transfer_types[$receipt['BankTransType']], "class='tableheader2'"); + end_row(); +} comments_display_row(ST_SUPPAYMENT, $trans_no); end_table(1); @@ -81,5 +90,5 @@ if (!$voided) display_allocations_from(PT_SUPPLIER, $receipt['supplier_id'], ST_SUPPAYMENT, $trans_no, -$receipt['Total']); } -end_page(true); +end_page(true, false, false, ST_SUPPAYMENT, $trans_no); ?> \ No newline at end of file