X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fview%2Fgl_payment_view.php;h=32f8933591f53d71f334d69ae2b07b66883a98af;hb=ad96cd0abbfd826592b851b8e0cb6d89e450fdf4;hp=0d7c51e789cd936d96561a2f6e5020c5609df5ef;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/gl/view/gl_payment_view.php b/gl/view/gl_payment_view.php index 0d7c51e7..32f89335 100644 --- a/gl/view/gl_payment_view.php +++ b/gl/view/gl_payment_view.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 1; $path_to_root="../.."; @@ -29,7 +38,7 @@ $company_currency = get_company_currency(); $show_currencies = false; -if ($from_trans['bank_curr_code'] != $company_currency) +if ($from_trans['bank_curr_code'] != $company_currency) { $show_currencies = true; } @@ -58,7 +67,7 @@ label_cells(_("Date"), sql2date($from_trans['trans_date']), "class='tableheader2 end_row(); start_row(); label_cells(_("Pay To"), payment_person_types::person_name($from_trans['person_type_id'], $from_trans['person_id']), "class='tableheader2'", "colspan=$colspan1"); -label_cells(_("Payment Type"), $from_trans['BankTransType'], "class='tableheader2'"); +label_cells(_("Payment Type"),bank_account_types::transfer_type($from_trans['account_type']), "class='tableheader2'"); end_row(); start_row(); label_cells(_("Reference"), $from_trans['ref'], "class='tableheader2'", "colspan=$colspan2"); @@ -73,9 +82,9 @@ $items = get_gl_trans(systypes::bank_payment(), $trans_no); if (db_num_rows($items)==0) { - echo "
" . _("There are no items for this payment."); -} -else + display_note(_("There are no items for this payment.")); +} +else { display_heading2(_("Items for this Payment")); @@ -91,10 +100,10 @@ else $k = 0; //row colour counter $totalAmount = 0; - while ($item = db_fetch($items)) + while ($item = db_fetch($items)) { - if ($item["account"] != $from_trans["account_code"]) + if ($item["account"] != $from_trans["account_code"]) { alt_table_row_color($k);