X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Finquiry%2Fgl_account_inquiry.php;h=17a889075211ed8a028c70609ac125b7edae04b8;hb=ac93b30fdf9beabafa02a577a0f7db62eb703672;hp=23ffa17bd3f0d8c718f7b698da8826b4b7071045;hpb=431531eebf3ba494002cfbf7ea36f9e82d4975c0;p=fa-stable.git diff --git a/gl/inquiry/gl_account_inquiry.php b/gl/inquiry/gl_account_inquiry.php index 23ffa17b..17a88907 100644 --- a/gl/inquiry/gl_account_inquiry.php +++ b/gl/inquiry/gl_account_inquiry.php @@ -1,7 +1,16 @@ . +***********************************************************************/ +$page_security = 'SA_GLTRANSVIEW'; +$path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); @@ -11,15 +20,22 @@ include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/gl/includes/gl_db.inc"); -$js = get_js_set_focus('account'); +$js = ''; +set_focus('account'); if ($use_popup_windows) $js .= get_js_open_window(800, 500); if ($use_date_picker) $js .= get_js_date_picker(); -page(_("General Ledger Account Inquiry"), false, false, "setFocus()", $js); +page(_("General Ledger Account Inquiry"), false, false, '', $js); //---------------------------------------------------------------------------------------------------- +// Ajax updates +// +if (get_post('Show')) +{ + $Ajax->activate('trans_tbl'); +} if (isset($_GET["account"])) $_POST["account"] = $_GET["account"]; @@ -37,20 +53,20 @@ if (isset($_GET["Dimension2"])) function gl_inquiry_controls() { global $table_style2; - + $dim = get_company_pref('use_dimension'); start_form(); //start_table($table_style2); start_table("class='tablestyle_noborder'"); start_row(); - + gl_all_accounts_list_cells(_("Account:"), 'account', null); - date_cells(_("from:"), 'TransFromDate', null, -30); + date_cells(_("from:"), 'TransFromDate', '', null, -30); date_cells(_("to:"), 'TransToDate'); - submit_cells('Show',_("Show")); - + submit_cells('Show',_("Show"),'','', 'default'); + end_row(); if ($dim >= 1) @@ -58,7 +74,7 @@ function gl_inquiry_controls() if ($dim > 1) dimensions_list_row(_("Dimension")." 2", 'Dimension2', null, true, " ", false, 2); end_table(); - + end_form(); } @@ -81,12 +97,8 @@ function show_results() $result = get_gl_transactions($_POST['TransFromDate'], $_POST['TransToDate'], -1, $_POST["account"], $_POST['Dimension'], $_POST['Dimension2']); - if (db_num_rows($result) == 0) - { - display_note(_("No general ledger transactions have been created for this account on the selected dates."), 0, 1); - return; - } $colspan = ($dim == 2 ? "6" : ($dim == 1 ? "5" : "4")); + div_start('trans_tbl'); //echo "\nDimension =". $_POST['Dimension']; display_heading($_POST["account"]. "   ".$act_name); @@ -97,23 +109,34 @@ function show_results() else if ($dim == 1) $th = array(_("Type"), _("#"), _("Date"), _("Dimension"), _("Person/Item"), _("Debit"), _("Credit"), _("Balance"), _("Memo")); - else - $th = array(_("Type"), _("#"), _("Date"), + else + $th = array(_("Type"), _("#"), _("Date"), _("Person/Item"), _("Debit"), _("Credit"), _("Balance"), _("Memo")); table_header($th); - $bfw = get_gl_balance_from_to("", $_POST['TransFromDate'], $_POST["account"], $_POST['Dimension'], $_POST['Dimension2']); + if (is_account_balancesheet($_POST["account"])) + $begin = ""; + else + { + $begin = begin_fiscalyear(); + if (date1_greater_date2($begin, $_POST['TransFromDate'])) + $begin = $_POST['TransFromDate']; + $begin = add_days($begin, -1); + } + + $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); label_cell(""); + label_cell(""); end_row(); //$running_total =0; $running_total = $bfw; $j = 1; $k = 0; //row colour counter - while ($myrow = db_fetch($result)) + while ($myrow = db_fetch($result)) { alt_table_row_color($k); @@ -137,8 +160,8 @@ function show_results() $j++; if ($j == 12) - { - $j = 1; + { + $j = 1; table_header($th); } } @@ -148,9 +171,13 @@ function show_results() label_cell("" . _("Ending Balance") ." - ".$_POST['TransToDate']. "", "colspan=$colspan"); display_debit_or_credit_cells($running_total); label_cell(""); + label_cell(""); end_row(); end_table(2); + if (db_num_rows($result) == 0) + display_note(_("No general ledger transactions have been created for this account on the selected dates."), 0, 1); + div_end(); } //----------------------------------------------------------------------------------------------------