X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep701.php;h=847fb04e7371d6f1f4fe9fb35d3d263a296e3c85;hb=902f1015d874c33bd7946b17de2ad80b4f2144b6;hp=f01628f8bd367ea3c7324f648262e76dc5a14629;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/reporting/rep701.php b/reporting/rep701.php index f01628f8..847fb04e 100644 --- a/reporting/rep701.php +++ b/reporting/rep701.php @@ -1,22 +1,30 @@ . +***********************************************************************/ +$page_security = 'SA_GLREP'; // ---------------------------------------------------------------- // $ Revision: 2.0 $ // Creator: Joe Hunt // date_: 2005-05-19 // Title: Chart of GL Accounts // ---------------------------------------------------------------- -$path_to_root="../"; +$path_to_root=".."; -include_once($path_to_root . "includes/session.inc"); -include_once($path_to_root . "includes/date_functions.inc"); -include_once($path_to_root . "includes/data_checks.inc"); -include_once($path_to_root . "gl/includes/gl_db.inc"); +include_once($path_to_root . "/includes/session.inc"); +include_once($path_to_root . "/includes/date_functions.inc"); +include_once($path_to_root . "/includes/data_checks.inc"); +include_once($path_to_root . "/gl/includes/gl_db.inc"); //---------------------------------------------------------------------------------------------------- -// trial_inquiry_controls(); print_Chart_of_Accounts(); //---------------------------------------------------------------------------------------------------- @@ -25,10 +33,14 @@ function print_Chart_of_Accounts() { global $path_to_root; - include_once($path_to_root . "reporting/includes/pdf_report.inc"); - $showbalance = $_POST['PARAM_0']; $comments = $_POST['PARAM_1']; + $destination = $_POST['PARAM_2']; + if ($destination) + include_once($path_to_root . "/reporting/includes/excel_report.inc"); + else + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); + $dec = 0; $cols = array(0, 50, 300, 425, 500); @@ -39,7 +51,7 @@ function print_Chart_of_Accounts() $params = array(0 => $comments); - $rep = new FrontReport(_('Chart of Accounts'), "ChartOfAccounts.pdf", user_pagesize()); + $rep = new FrontReport(_('Chart of Accounts'), "ChartOfAccounts", user_pagesize()); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -52,13 +64,6 @@ function print_Chart_of_Accounts() while ($account=db_fetch($accounts)) { - if ($showbalance == 1) - { - $begin = begin_fiscalyear(); - if (is_account_balancesheet($account["account_code"])) - $begin = ""; - $balance = get_gl_trans_from_to($begin, ToDay(), $account["account_code"], 0); - } if ($account['AccountTypeName'] != $group) { if ($classname != '') @@ -68,27 +73,39 @@ function print_Chart_of_Accounts() $rep->Font('bold'); $rep->TextCol(0, 4, $account['AccountClassName']); $rep->Font(); - $rep->row -= ($rep->lineHeight + 4); + //$rep->row -= ($rep->lineHeight + 4); + $rep->NewLine(); } $group = $account['AccountTypeName']; $rep->TextCol(0, 4, $account['AccountTypeName']); //$rep->Line($rep->row - 4); - $rep->row -= ($rep->lineHeight + 4); + //$rep->row -= ($rep->lineHeight + 4); + $rep->NewLine(); } $classname = $account['AccountClassName']; - - $rep->TextCol(0, 1, $account['account_code']); - $rep->TextCol(1, 2, $account['account_name']); - $rep->TextCol(2, 3, $account['account_code2']); - if ($showbalance == 1) - $rep->TextCol(3, 4, number_format2($balance, $dec)); - - $rep->NewLine(); - if ($rep->row < $rep->bottomMargin + 3 * $rep->lineHeight) + + if ($account['account_code'] != null) { - $rep->Line($rep->row - 2); - $rep->Header(); - } + if ($showbalance == 1) + { + $begin = begin_fiscalyear(); + if (is_account_balancesheet($account["account_code"])) + $begin = ""; + $balance = get_gl_trans_from_to($begin, ToDay(), $account["account_code"], 0); + } + $rep->TextCol(0, 1, $account['account_code']); + $rep->TextCol(1, 2, $account['account_name']); + $rep->TextCol(2, 3, $account['account_code2']); + if ($showbalance == 1) + $rep->AmountCol(3, 4, $balance, $dec); + + $rep->NewLine(); + if ($rep->row < $rep->bottomMargin + 3 * $rep->lineHeight) + { + $rep->Line($rep->row - 2); + $rep->Header(); + } + } } $rep->Line($rep->row); $rep->End();