X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep501.php;h=b697925f1f87654b8c6d232db434d91a46085a97;hb=d567a10b7925c8bb97c734e213d6651a979af29d;hp=d0c270f40c5707a00ea01d45cbfa92fe33e0c6a4;hpb=231b2de9031a927156a58998fdb5601447732b38;p=fa-stable.git diff --git a/reporting/rep501.php b/reporting/rep501.php index d0c270f4..b697925f 100644 --- a/reporting/rep501.php +++ b/reporting/rep501.php @@ -1,22 +1,30 @@ . +***********************************************************************/ $page_security = 2; // ---------------------------------------------------------------- // $ Revision: 2.0 $ // Creator: Joe Hunt // date_: 2005-05-19 -// Title: Bill Of Material +// Title: Dimension Summary // ---------------------------------------------------------------- -$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_dimension_summary(); function getTransactions($from, $to) @@ -62,13 +70,15 @@ function print_dimension_summary() { global $path_to_root; - include_once($path_to_root . "reporting/includes/pdf_report.inc"); - $fromdim = $_POST['PARAM_0']; $todim = $_POST['PARAM_1']; $showbal = $_POST['PARAM_2']; $comments = $_POST['PARAM_3']; - + $destination = $_POST['PARAM_4']; + if ($destination) + include_once($path_to_root . "/reporting/includes/excel_report.inc"); + else + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); $cols = array(0, 50, 210, 250, 320, 395, 465, 515); @@ -79,7 +89,7 @@ function print_dimension_summary() $params = array( 0 => $comments, 1 => array('text' => _('Dimension'), 'from' => $fromdim, 'to' => $todim)); - $rep = new FrontReport(_('Dimension Summary'), "DimensionSummary.pdf", user_pagesize()); + $rep = new FrontReport(_('Dimension Summary'), "DimensionSummary", user_pagesize()); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -91,8 +101,8 @@ function print_dimension_summary() $rep->TextCol(0, 1, $trans['reference']); $rep->TextCol(1, 2, $trans['name']); $rep->TextCol(2, 3, $trans['type_']); - $rep->TextCol(3, 4, $trans['date_']); - $rep->TextCol(4, 5, $trans['due_date']); + $rep->DateCol(3, 4, $trans['date_'], true); + $rep->DateCol(4, 5, $trans['due_date'], true); if ($trans['closed']) $str = _('Yes'); else @@ -101,7 +111,7 @@ function print_dimension_summary() if ($showbal) { $balance = getYTD($trans['id']); - $rep->TextCol(6, 7, number_format2($balance, 0)); + $rep->AmountCol(6, 7, $balance, 0); } $rep->NewLine(1, 2); }