From 3ed8e0910d40378fcdfa041252dba4c387f00e20 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Wed, 26 Oct 2011 23:58:59 +0200 Subject: [PATCH] Cleanup in customers.php and customer_inquiry.php --- sales/inquiry/customer_inquiry.php | 6 ++++-- sales/manage/customers.php | 18 ++++++++++++------ 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/sales/inquiry/customer_inquiry.php b/sales/inquiry/customer_inquiry.php index 058c5fa..d3fc697 100644 --- a/sales/inquiry/customer_inquiry.php +++ b/sales/inquiry/customer_inquiry.php @@ -41,7 +41,7 @@ if (!isset($_POST['customer_id'])) start_table(TABLESTYLE_NOBORDER); start_row(); -customer_list_cells(_("Select a customer: "), 'customer_id', null, true, false, false, true); +customer_list_cells(_("Select a customer: "), 'customer_id', null, true, false, false, !@$_REQUEST['popup']); date_cells(_("From:"), 'TransAfterDate', '', null, -30); date_cells(_("To:"), 'TransToDate', '', null, 1); @@ -246,7 +246,9 @@ $table->width = "85%"; display_db_pager($table); +hidden('popup', @$_REQUEST['popup']); end_form(); -end_page(); + +end_page(@$_REQUEST['popup'], false, false); ?> diff --git a/sales/manage/customers.php b/sales/manage/customers.php index d8b85df..8a1066b 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -13,7 +13,10 @@ $page_security = 'SA_CUSTOMER'; $path_to_root = "../.."; 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); +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"); @@ -118,6 +121,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'); } } @@ -235,16 +242,15 @@ function customer_settings($selected_id) if($selected_id) { + record_status_list_row(_("Customer status:"), 'inactive'); 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); + echo ' '; + echo viewer_link(''. _('Customer Transactions').'', "sales/inquiry/customer_inquiry.php?customer_id=$selected_id&popup=1"); + echo "\n"; end_row(); } - record_status_list_row(_("Customer status:"), 'inactive'); } elseif (isset($auto_create_branch) && $auto_create_branch == 1) { -- 2.30.2