Fixed Next bug for pagers in customers and suppliers transactions.
[fa-stable.git] / sales / manage / customers.php
index 01b167d9855ecb5d4aecba19254af3bf8961b156..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,7 +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),
+               'transactions' => array(_('&Transactions'), $selected_id),
+               'orders' => array(_('Sales &Orders'), $selected_id),
        ));
        
        switch (get_post('_tabs_sel')) {
@@ -352,10 +354,13 @@ 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;
+                       include_once($path_to_root."/sales/inquiry/sales_orders_view.php");
+                       break;
        };
 br();
 tabbed_content_end();