X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomers.php;h=af14b9a6af09421cd6bad62a1f3b60b31bfe701e;hb=7840540918bfd37c886877a5d52e3ba0b3373289;hp=8cc3401d9638f0a4117d1e867f99cfef9378d8b2;hpb=cfedd5f88e44b4dfa5453dea789fe600f76c3331;p=fa-stable.git diff --git a/sales/manage/customers.php b/sales/manage/customers.php index 8cc3401d..af14b9a6 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -12,10 +12,14 @@ $page_security = 'SA_CUSTOMER'; $path_to_root = "../.."; +include_once($path_to_root . "/includes/db_pager.inc"); include_once($path_to_root . "/includes/session.inc"); $js = ""; if ($use_popup_windows) $js .= get_js_open_window(900, 500); +if ($use_date_picker) + $js .= get_js_date_picker(); + page(_($help_context = "Customers"), @$_REQUEST['popup'], false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); @@ -337,8 +341,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')) { @@ -352,14 +356,10 @@ tabbed_content_start('tabs', array( break; 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; }; @@ -368,6 +368,6 @@ tabbed_content_end(); hidden('popup', @$_REQUEST['popup']); end_form(); -end_page(); +end_page(@$_REQUEST['popup']); ?>