X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomers.php;h=41c642ac760ae5e964c9c0e00157c7491c258ad9;hb=f5a290483ff27984cb2b66ac1ec50c5e2d36d087;hp=16c73bc74690ee1d581d1db36de5d75188055cca;hpb=28e02ce39224c6107932e2c5e1b0ec13be90528f;p=fa-stable.git diff --git a/sales/manage/customers.php b/sales/manage/customers.php index 16c73bc7..41c642ac 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -12,8 +12,15 @@ $page_security = 'SA_CUSTOMER'; $path_to_root = "../.."; +include($path_to_root . "/includes/db_pager.inc"); include_once($path_to_root . "/includes/session.inc"); -page(_($help_context = "Customers"), @$_REQUEST['popup']); +$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"); include_once($path_to_root . "/includes/banking.inc"); @@ -72,7 +79,7 @@ function can_process() function handle_submit(&$selected_id) { - global $path_to_root, $Ajax; + global $path_to_root, $Ajax, $auto_create_branch; if (!can_process()) return; @@ -118,6 +125,10 @@ function handle_submit(&$selected_id) commit_transaction(); display_notification(_("A new customer has been added.")); + + if (isset($auto_create_branch) && $auto_create_branch == 1) + display_notification(_("A default Branch has been automatically created, please check default Branch values by using link below.")); + $Ajax->activate('_page_body'); } } @@ -173,7 +184,7 @@ if (isset($_POST['delete'])) function customer_settings($selected_id) { - global $SysPrefs, $path_to_root; + global $SysPrefs, $path_to_root, $auto_create_branch; if (!$selected_id) { @@ -234,18 +245,7 @@ function customer_settings($selected_id) sales_types_list_row(_("Sales Type/Price List:"), 'sales_type', $_POST['sales_type']); if($selected_id) - { - if (!@$_REQUEST['popup']) - { - start_row(); - echo ''._('Transactions').':'; - hyperlink_params_td($path_to_root . "/sales/inquiry/customer_inquiry.php", - ''. _("Go to Customer Transactions").'', - "customer_id=".$selected_id); - end_row(); - } record_status_list_row(_("Customer status:"), 'inactive'); - } elseif (isset($auto_create_branch) && $auto_create_branch == 1) { table_section_title(_("Branch")); @@ -341,6 +341,8 @@ if (!$selected_id) tabbed_content_start('tabs', array( 'settings' => array(_('&General settings'), $selected_id), 'contacts' => array(_('&Contacts'), $selected_id), + 'transactions' => array(_('&Transactions'), $selected_id), + 'orders' => array(_('Sales &Orders'), $selected_id), )); switch (get_post('_tabs_sel')) { @@ -352,13 +354,22 @@ tabbed_content_start('tabs', array( $contacts = new contacts('contacts', $selected_id, 'customer'); $contacts->show(); break; + case 'transactions': + $_GET['customer_id'] = $selected_id; + $_GET['popup'] = 1; + 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(); hidden('popup', @$_REQUEST['popup']); end_form(); -end_page(); +end_page(@$_REQUEST['popup']); ?>