X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fview%2Fgl_deposit_view.php;h=02a3f7e00b733beb2d30608dd2b07f81211bd105;hb=87f8a820c2f4c7861c2f8019b4cfb8eef58e85b5;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..02a3f7e0 100644 --- a/gl/view/gl_deposit_view.php +++ b/gl/view/gl_deposit_view.php @@ -29,7 +29,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; } @@ -75,9 +75,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 +87,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);