Eliminated non-static method calls and other bulk fixes to fix php5 warnings
[fa-stable.git] / sales / includes / ui / sales_credit_ui.inc
index dba384df59a9661e9275d80fa41eb8da459c21d8..73a5894f0da52d6713af96b1ac4b1418d887c7e4 100644 (file)
@@ -15,7 +15,7 @@ include_once($path_to_root . "/includes/ui.inc");
 
 function display_credit_header(&$order)
 {
-       global $table_style, $Ajax;
+       global $table_style, $Ajax, $Refs;
 
        start_outer_table("width=80% $table_style");
        table_section(1);
@@ -23,10 +23,10 @@ function display_credit_header(&$order)
        $customer_error = "";
        $change_prices = 0;
 
-    if (!isset($_POST['customer_id']) && (get_global_customer() != reserved_words::get_all()))
+    if (!isset($_POST['customer_id']) && (get_global_customer() != ALL_TEXT))
        $_POST['customer_id'] = get_global_customer();
 
-       customer_list_row(_("Customer:"), 'customer_id', null, false, true);
+       customer_list_row(_("Customer:"), 'customer_id', null, false, true, false, true);
 
        if ($order->customer_id != $_POST['customer_id'] /*|| $order->sales_type != $_POST['sales_type_id']*/)
        {
@@ -35,7 +35,7 @@ function display_credit_header(&$order)
        }
 
        customer_branches_list_row(_("Branch:"), $_POST['customer_id'], 
-         'branch_id', null, false, true, true);
+         'branch_id', null, false, true, true, true);
 
        //if (($_SESSION['credit_items']->order_no == 0) ||
        //      ($order->customer_id != $_POST['customer_id']) ||
@@ -80,7 +80,7 @@ function display_credit_header(&$order)
        set_global_customer($_POST['customer_id']);
 
        if (!isset($_POST['ref']))
-               $_POST['ref'] = references::get_next(11);
+               $_POST['ref'] = $Refs->get_next(11);
        if ($order->trans_no==0)
            ref_row(_("Reference").':', 'ref');
        else
@@ -91,11 +91,9 @@ function display_credit_header(&$order)
        {
                table_section(2);
                
-           div_start('currency');
                label_row(_("Customer Currency:"), $order->customer_currency);
                exchange_rate_display($order->customer_currency, get_company_currency(),
                        $_POST['OrderDate']);
-           div_end();
        }
        table_section(3);
 
@@ -126,7 +124,7 @@ function display_credit_header(&$order)
                        && (get_base_sales_type()>0)) {
                                $change_prices = 1;
                }
-               $Ajax->activate('currency');
+               $Ajax->activate('_ex_rate');
        }
        // 2008-11-12 Joe Hunt added dimensions
        $dim = get_company_pref('use_dimension');