X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Finquiry%2Fgl_account_inquiry.php;h=9aff2365ac093c3c9d50d8c1d315100e4ad847bc;hb=e9782c04faf09dd040dbc0c908cdb6e6d4f0dcfc;hp=5612e36333a2a3579555f1c14fe9e4232b0a925d;hpb=5f06887dedd4d14701864fb72994d7e20352086d;p=fa-stable.git diff --git a/gl/inquiry/gl_account_inquiry.php b/gl/inquiry/gl_account_inquiry.php index 5612e363..9aff2365 100644 --- a/gl/inquiry/gl_account_inquiry.php +++ b/gl/inquiry/gl_account_inquiry.php @@ -14,6 +14,7 @@ $path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); +include_once($path_to_root . "/admin/db/fiscalyears_db.inc"); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/data_checks.inc"); @@ -61,28 +62,26 @@ if (!isset($_POST["amount_max"])) function gl_inquiry_controls() { - global $table_style2; - $dim = get_company_pref('use_dimension'); start_form(); - start_table("class='tablestyle_noborder'"); + start_table(TABLESTYLE_NOBORDER); start_row(); - gl_all_accounts_list_cells(_("Account:"), 'account', null, false, false, "All Accounts"); + gl_all_accounts_list_cells(_("Account:"), 'account', null, false, false, _("All Accounts")); date_cells(_("from:"), 'TransFromDate', '', null, -30); date_cells(_("to:"), 'TransToDate'); end_row(); end_table(); - start_table(); + start_table(TABLESTYLE_NOBORDER); start_row(); if ($dim >= 1) dimensions_list_cells(_("Dimension")." 1:", 'Dimension', null, true, " ", false, 1); if ($dim > 1) dimensions_list_cells(_("Dimension")." 2:", 'Dimension2', null, true, " ", false, 2); - small_amount_cells(_("Amount min:"), 'amount_min', null); - small_amount_cells(_("Amount max:"), 'amount_max', null); + small_amount_cells(_("Amount min:"), 'amount_min', null, " "); + small_amount_cells(_("Amount max:"), 'amount_max', null, " "); submit_cells('Show',_("Show"),'','', 'default'); end_row(); end_table(); @@ -95,7 +94,7 @@ function gl_inquiry_controls() function show_results() { - global $path_to_root, $table_style, $systypes_array; + global $path_to_root, $systypes_array; if (!isset($_POST["account"])) $_POST["account"] = null; @@ -122,7 +121,7 @@ function show_results() input_num("amount_min") == 0 && input_num("amount_max") == 0; - start_table($table_style); + start_table(TABLESTYLE); $first_cols = array(_("Type"), _("#"), _("Date")); @@ -150,7 +149,7 @@ function show_results() $begin = ""; else { - $begin = begin_fiscalyear(); + $begin = get_fiscalyear_begin_for_date($_POST['TransFromDate']); if (date1_greater_date2($begin, $_POST['TransFromDate'])) $begin = $_POST['TransFromDate']; $begin = add_days($begin, -1); @@ -161,7 +160,7 @@ function show_results() $bfw = get_gl_balance_from_to($begin, $_POST['TransFromDate'], $_POST["account"], $_POST['Dimension'], $_POST['Dimension2']); start_row("class='inquirybg'"); label_cell(""._("Opening Balance")." - ".$_POST['TransFromDate']."", "colspan=$colspan"); - display_debit_or_credit_cells($bfw); + display_debit_or_credit_cells($bfw, true); label_cell(""); label_cell(""); end_row(); @@ -210,7 +209,7 @@ function show_results() if ($show_balances) { start_row("class='inquirybg'"); label_cell("" . _("Ending Balance") ." - ".$_POST['TransToDate']. "", "colspan=$colspan"); - display_debit_or_credit_cells($running_total); + display_debit_or_credit_cells($running_total, true); label_cell(""); label_cell(""); end_row();