[0005214] Stock Check Sheet: changed option name to less confusing for shortages...
[fa-stable.git] / reporting / rep501.php
index d0c270f40c5707a00ea01d45cbfa92fe33e0c6a4..25b39fd6f354bd896f1e4078eea6f3aafbb4bb06 100644 (file)
@@ -1,22 +1,30 @@
 <?php
-
-$page_security = 2;
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+$page_security = 'SA_DIMENSIONREP';
 // ----------------------------------------------------------------
 // $ 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)
@@ -24,8 +32,8 @@ function getTransactions($from, $to)
        $sql = "SELECT *
                FROM
                        ".TB_PREF."dimensions
-               WHERE reference >= '$from'
-               AND reference <= '$to'
+               WHERE id >= ".db_escape($from)."
+               AND id <= ".db_escape($to)."
                ORDER BY
                        reference";
 
@@ -62,14 +70,18 @@ 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'];
-    
+       $orientation = $_POST['PARAM_4'];
+       $destination = $_POST['PARAM_5'];
+       if ($destination)
+               include_once($path_to_root . "/reporting/includes/excel_report.inc");
+       else
+               include_once($path_to_root . "/reporting/includes/pdf_report.inc");
 
+       $orientation = ($orientation ? 'L' : 'P');
        $cols = array(0, 50, 210, 250, 320, 395, 465,   515);
 
        $headers = array(_('Reference'), _('Name'), _('Type'), _('Date'), _('Due Date'), _('Closed'), _('YTD'));
@@ -77,13 +89,15 @@ function print_dimension_summary()
        $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'right');
 
     $params =   array(         0 => $comments,
-                                   1 => array('text' => _('Dimension'), 'from' => $fromdim, 'to' => $todim));
+                                   1 => array('text' => _('Dimension'), 'from' => get_dimension_string($fromdim), 'to' => get_dimension_string($todim)));
 
-    $rep = new FrontReport(_('Dimension Summary'), "DimensionSummary.pdf", user_pagesize());
+    $rep = new FrontReport(_('Dimension Summary'), "DimensionSummary", user_pagesize(), 9, $orientation);
+    if ($orientation == 'L')
+       recalculate_cols($cols);
 
     $rep->Font();
     $rep->Info($params, $cols, $headers, $aligns);
-    $rep->Header();
+    $rep->NewPage();
 
        $res = getTransactions($fromdim, $todim);
        while ($trans=db_fetch($res))
@@ -91,8 +105,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 +115,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);
        }
@@ -109,4 +123,3 @@ function print_dimension_summary()
     $rep->End();
 }
 
-?>
\ No newline at end of file