Eliminated non-static method calls and other bulk fixes to fix php5 warnings
[fa-stable.git] / sales / inquiry / customer_inquiry.php
index b005e5c8eb2965f0390d66bb328ecbf5a8f17276..5602fed553b93f5013e1f3d2b5112fa5f50d8e49 100644 (file)
@@ -1,16 +1,16 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       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/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
-$page_security = 1;
-$path_to_root="../..";
+$page_security = 'SA_SALESTRANSVIEW';
+$path_to_root = "../..";
 include($path_to_root . "/includes/db_pager.inc");
 include_once($path_to_root . "/includes/session.inc");
 
@@ -51,7 +51,7 @@ if (!isset($_POST['filterType']))
 
 cust_allocations_list_cells(null, 'filterType', $_POST['filterType'], true);
 
-submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), true);
+submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), 'default');
 end_row();
 end_table();
 end_form();
@@ -94,7 +94,7 @@ function display_customer_summary($customer_record)
 //------------------------------------------------------------------------------------------------
 
 div_start('totals_tbl');
-if ($_POST['customer_id'] != "" && $_POST['customer_id'] != reserved_words::get_all())
+if ($_POST['customer_id'] != "" && $_POST['customer_id'] != ALL_TEXT)
 {
        $customer_record = get_customer_details($_POST['customer_id'], $_POST['TransToDate']);
     display_customer_summary($customer_record);
@@ -110,13 +110,15 @@ if(get_post('RefreshInquiry'))
 
 function systype_name($dummy, $type)
 {
-       return systypes::name($type);
+       global $systypes_array;
+
+       return $systypes_array[$type];
 }
 
 function order_view($row)
 {
        return $row['order_']>0 ?
-               get_customer_trans_view_str(systypes::sales_order(), $row['order_'])
+               get_customer_trans_view_str(ST_SALESORDER, $row['order_'])
                : "";
 }
 
@@ -184,7 +186,7 @@ function edit_link($row)
                        $str = "/sales/customer_delivery.php?ModifyDelivery=".$row['trans_no'];
                break;
        }
-       if ($str != "")
+       if ($str != "" && !is_closed_trans($row['type'], $row["trans_no"]))
                return pager_link(_('Edit'), $str, ICON_EDIT);
        return '';      
 }
@@ -228,10 +230,10 @@ function check_overdue($row)
                        AND trans.tran_date <= '$date_to'
                        AND trans.branch_code = branch.branch_code";
 
-       if ($_POST['customer_id'] != reserved_words::get_all())
+       if ($_POST['customer_id'] != ALL_TEXT)
                $sql .= " AND trans.debtor_no = '" . $_POST['customer_id'] . "'";
 
-       if ($_POST['filterType'] != reserved_words::get_all())
+       if ($_POST['filterType'] != ALL_TEXT)
        {
                if ($_POST['filterType'] == '1')
                {
@@ -243,7 +245,7 @@ function check_overdue($row)
                }
                elseif ($_POST['filterType'] == '3')
                {
-                       $sql .= " AND (trans.type = " . systypes::cust_payment() 
+                       $sql .= " AND (trans.type = " . ST_CUSTPAYMENT 
                                        ." OR trans.type = 2) ";
                }
                elseif ($_POST['filterType'] == '4')
@@ -284,7 +286,7 @@ $cols = array(
                array('insert'=>true, 'fun'=>'prt_link')
        );
 
-if ($_POST['customer_id'] != reserved_words::get_all()) {
+if ($_POST['customer_id'] != ALL_TEXT) {
        $cols[_("Customer")] = 'skip';
        $cols[_("Currency")] = 'skip';
 }