Eliminated non-static method calls and other bulk fixes to fix php5 warnings
[fa-stable.git] / reporting / rep204.php
index a1bbf4329e784dcbe511d60e00b8ce98fc64caee..5521c7450e40eec5673b46c28e685fbadcbc07a6 100644 (file)
@@ -1,25 +1,33 @@
 <?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_SUPPLIERANALYTIC';
 // ----------------------------------------------------------------
 // $ Revision: 2.0 $
 // Creator:    Joe Hunt
 // date_:      2005-05-19
 // Title:      Outstanding GRNs Report
 // ----------------------------------------------------------------
-$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_outstanding_GRN();
 
-function getTransactions($fromsupp, $tosupp)
+function getTransactions($fromsupp)
 {
        $sql = "SELECT ".TB_PREF."grn_batch.id,
                        order_no,
@@ -39,10 +47,10 @@ function getTransactions($fromsupp, $tosupp)
                WHERE ".TB_PREF."grn_batch.supplier_id=".TB_PREF."suppliers.supplier_id
                AND ".TB_PREF."grn_batch.id = ".TB_PREF."grn_items.grn_batch_id
                AND ".TB_PREF."grn_items.po_detail_item = ".TB_PREF."purch_order_details.po_detail_item
-               AND qty_recd-quantity_inv <>0
-               AND ".TB_PREF."grn_batch.supplier_id >='" . $fromsupp . "'
-               AND ".TB_PREF."grn_batch.supplier_id <='" . $tosupp . "'
-               ORDER BY ".TB_PREF."grn_batch.supplier_id, 
+               AND qty_recd-quantity_inv <>0 ";
+       if ($fromsupp != ALL_NUMERIC)
+               $sql .= "AND ".TB_PREF."grn_batch.supplier_id ='" . $fromsupp . "' ";
+       $sql .= "ORDER BY ".TB_PREF."grn_batch.supplier_id,
                        ".TB_PREF."grn_batch.id";
 
     return db_query($sql, "No transactions were returned");
@@ -54,16 +62,18 @@ function print_outstanding_GRN()
 {
     global $path_to_root;
 
-    include_once($path_to_root . "reporting/includes/pdf_report.inc");
-
     $fromsupp = $_POST['PARAM_0'];
-    $tosupp = $_POST['PARAM_1'];
-    $comments = $_POST['PARAM_2'];
-    
-       if ($fromsupp == null)
-               $fromsupp = 0;
-       if ($tosupp == null)
-               $tosupp = 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");
+
+       if ($fromsupp == ALL_NUMERIC)
+               $from = _('All');
+       else
+               $from = get_supplier_name($fromsupp);
     $dec = user_price_dec();
 
        $cols = array(0, 40, 80, 190,   250, 320, 385, 450,     515);
@@ -74,10 +84,9 @@ function print_outstanding_GRN()
        $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right', 'right');
 
     $params =   array(         0 => $comments,
-                                   1 => array('text' => _('Supplier'), 'from' => get_supplier_name($fromsupp),
-                            'to' => get_supplier_name($tosupp)));
+                                   1 => array('text' => _('Supplier'), 'from' => $from, 'to' => ''));
 
-    $rep = new FrontReport(_('Outstanding GRNs Report'), "OutstandingGRN.pdf", user_pagesize());
+    $rep = new FrontReport(_('Outstanding GRNs Report'), "OutstandingGRN", user_pagesize());
 
     $rep->Font();
     $rep->Info($params, $cols, $headers, $aligns);
@@ -86,17 +95,18 @@ function print_outstanding_GRN()
        $Tot_Val=0;
        $Supplier = '';
        $SuppTot_Val=0;
-       $res = getTransactions($fromsupp, $tosupp);
-       
+       $res = getTransactions($fromsupp);
+
        While ($GRNs = db_fetch($res))
-       {       
+       {
+               $dec2 = get_qty_dec($GRNs['item_code']);
                if ($Supplier != $GRNs['supplier_id'])
                {
                        if ($Supplier != '')
                        {
                                $rep->NewLine(2);
                                $rep->TextCol(0, 7, _('Total'));
-                               $rep->TextCol(7, 8, number_format2($SuppTot_Val, $dec));
+                               $rep->AmountCol(7, 8, $SuppTot_Val, $dec);
                                $rep->Line($rep->row - 2);
                                $rep->NewLine(3);
                                $SuppTot_Val = 0;
@@ -108,13 +118,13 @@ function print_outstanding_GRN()
                $rep->TextCol(0, 1, $GRNs['id']);
                $rep->TextCol(1, 2, $GRNs['order_no']);
                $rep->TextCol(2, 3, $GRNs['item_code'] . '-' . $GRNs['description']);
-               $rep->TextCol(3, 4, number_format2($GRNs['qty_recd'], $dec));
-               $rep->TextCol(4, 5, number_format2($GRNs['quantity_inv'], $dec));
+               $rep->AmountCol(3, 4, $GRNs['qty_recd'], $dec2);
+               $rep->AmountCol(4, 5, $GRNs['quantity_inv'], $dec2);
                $QtyOstg = $GRNs['qty_recd'] - $GRNs['quantity_inv'];
                $Value = ($GRNs['qty_recd'] - $GRNs['quantity_inv']) * $GRNs['std_cost_unit'];
-               $rep->TextCol(5, 6, number_format2($QtyOstg, $dec));
-               $rep->TextCol(6, 7, number_format2($GRNs['std_cost_unit'], $dec));
-               $rep->TextCol(7, 8, number_format2($Value, $dec));
+               $rep->AmountCol(5, 6, $QtyOstg, $dec2);
+               $rep->AmountCol(6, 7, $GRNs['std_cost_unit'], $dec);
+               $rep->AmountCol(7, 8, $Value, $dec);
                $Tot_Val += $Value;
                $SuppTot_Val += $Value;
 
@@ -124,15 +134,16 @@ function print_outstanding_GRN()
        {
                $rep->NewLine();
                $rep->TextCol(0, 7, _('Total'));
-               $rep->TextCol(7, 8, number_format2($SuppTot_Val, $dec));
+               $rep->AmountCol(7, 8, $SuppTot_Val, $dec);
                $rep->Line($rep->row - 2);
                $rep->NewLine(3);
                $SuppTot_Val = 0;
        }
        $rep->NewLine(2);
        $rep->TextCol(0, 7, _('Grand Total'));
-       $rep->TextCol(7, 8, number_format2($Tot_Val, $dec));
+       $rep->AmountCol(7, 8, $Tot_Val, $dec);
        $rep->Line($rep->row - 2);
+       $rep->NewLine();
     $rep->End();
 }