X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fview%2Fgl_deposit_view.php;h=95449bd77885dce180184cfc4e65c801c7f48b49;hb=54d84ff9a67620ab38c676cdbcf87853632724f0;hp=fd9b746227907f520e1a2a50c0b8bf49ccf83185;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/gl/view/gl_deposit_view.php b/gl/view/gl_deposit_view.php index fd9b7462..95449bd7 100644 --- a/gl/view/gl_deposit_view.php +++ b/gl/view/gl_deposit_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 ($to_trans['bank_curr_code'] != $company_currency) +if ($to_trans['bank_curr_code'] != $company_currency) { $show_currencies = true; } @@ -60,7 +69,7 @@ label_cells(_("Date"), sql2date($to_trans['trans_date']), "class='tableheader2'" end_row(); start_row(); label_cells(_("From"), payment_person_types::person_name($to_trans['person_type_id'], $to_trans['person_id']), "class='tableheader2'", "colspan=$colspan1"); -label_cells(_("Deposit Type"), $to_trans['BankTransType'], "class='tableheader2'"); +label_cells(_("Deposit Type"), bank_account_types::transfer_type($to_trans['account_type']), "class='tableheader2'"); end_row(); start_row(); label_cells(_("Reference"), $to_trans['ref'], "class='tableheader2'", "colspan=$colspan2"); @@ -75,9 +84,9 @@ $items = get_gl_trans(systypes::bank_deposit(), $trans_no); if (db_num_rows($items) == 0) { - echo "
" . _("There are no items for this deposit."); -} -else + display_note(_("There are no items for this deposit.")); +} +else { display_heading2(_("Items for this Deposit")); @@ -87,15 +96,15 @@ else start_table("$table_style width=80%"); $th = array(_("Account Code"), _("Account Description"), _("Amount"), _("Memo")); - table_header($th); + table_header($th); $k = 0; //row colour counter $total_amount = 0; - while ($item = db_fetch($items)) + while ($item = db_fetch($items)) { - if ($item["account"] != $to_trans["account_code"]) + if ($item["account"] != $to_trans["account_code"]) { alt_table_row_color($k);