Fixed Next bug for pagers in customers and suppliers transactions.
[fa-stable.git] / sales / manage / customers.php
index 8cc3401d9638f0a4117d1e867f99cfef9378d8b2..7df12402b17207d54156ec2cd320d0c3802a6068 100644 (file)
@@ -12,6 +12,7 @@
 $page_security = 'SA_CUSTOMER';
 $path_to_root = "../..";
 
+include($path_to_root . "/includes/db_pager.inc");
 include_once($path_to_root . "/includes/session.inc");
 $js = "";
 if ($use_popup_windows)
@@ -337,8 +338,8 @@ if (!$selected_id)
 tabbed_content_start('tabs', array(
                'settings' => array(_('&General settings'), $selected_id),
                'contacts' => array(_('&Contacts'), $selected_id),
-               'transactions' => array(_('Customer &Transactions'), $selected_id),
-               'orders' => array(_('&Orders'), $selected_id),
+               'transactions' => array(_('&Transactions'), $selected_id),
+               'orders' => array(_('Sales &Orders'), $selected_id),
        ));
        
        switch (get_post('_tabs_sel')) {
@@ -353,13 +354,11 @@ tabbed_content_start('tabs', array(
                case 'transactions':
                        $_GET['customer_id'] = $selected_id;
                        $_GET['popup'] = 1;
-                       $_SERVER['REQUEST_METHOD'] = 'GET';                     
                        include_once($path_to_root."/sales/inquiry/customer_inquiry.php");
                        break;
                case 'orders':
                        $_GET['customer_id'] = $selected_id;
                        $_GET['popup'] = 1;
-                       $_SERVER['REQUEST_METHOD'] = 'GET';                     
                        include_once($path_to_root."/sales/inquiry/sales_orders_view.php");
                        break;
        };