From fd70a44680d92dab4b7abdbe9903a40c9f20314b Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Thu, 8 Mar 2018 15:08:07 +0100 Subject: [PATCH] Changed GL Inquiry to also include the Reference Number. --- gl/inquiry/gl_account_inquiry.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gl/inquiry/gl_account_inquiry.php b/gl/inquiry/gl_account_inquiry.php index 0d95a482..d49bad5d 100644 --- a/gl/inquiry/gl_account_inquiry.php +++ b/gl/inquiry/gl_account_inquiry.php @@ -113,7 +113,7 @@ function show_results() $_POST["account"], $_POST['Dimension'], $_POST['Dimension2'], null, input_num('amount_min'), input_num('amount_max'), null, $_POST['Memo']); - $colspan = ($dim == 2 ? "6" : ($dim == 1 ? "5" : "4")); + $colspan = ($dim == 2 ? "7" : ($dim == 1 ? "6" : "5")); if ($_POST["account"] != null) display_heading($_POST["account"]. "   ".$act_name); @@ -125,7 +125,7 @@ function show_results() start_table(TABLESTYLE); - $first_cols = array(_("Type"), _("#"), _("Date")); + $first_cols = array(_("Type"), _("#"), _("Reference"), _("Date")); if ($_POST["account"] == null) $account_col = array(_("Account")); @@ -183,6 +183,7 @@ function show_results() label_cell($systypes_array[$myrow["type"]]); label_cell(get_gl_view_str($myrow["type"], $myrow["type_no"], $myrow["type_no"], true)); + label_cell(get_trans_view_str($myrow["type"],$myrow["type_no"],$myrow['reference'])); label_cell($trandate); if ($_POST["account"] == null) -- 2.30.2