X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomers.php;h=7169596c89deb8485bd69dfe4c84765982164514;hb=d07b6ec5fd2bbfbd24335406131fc30f7862dbeb;hp=a3e11c4db772c57c5899ed5f39fe5315d19e7cfe;hpb=7da63db70a6ca210a46a9322d1f299ec663bb66d;p=fa-stable.git diff --git a/sales/manage/customers.php b/sales/manage/customers.php index a3e11c4d..7169596c 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -20,12 +20,13 @@ if ($SysPrefs->use_popup_windows) if (user_use_date_picker()) $js .= get_js_date_picker(); -page(_($help_context = "Customers"), false, false, "", $js); +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"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/ui/contacts_view.inc"); +include_once($path_to_root . "/includes/ui/attachment.inc"); if (isset($_GET['debtor_no'])) { @@ -301,14 +302,15 @@ function customer_settings($selected_id) end_outer_table(1); div_start('controls'); + if (@$_REQUEST['popup']) hidden('popup', 1); if (!$selected_id) { - submit_center('submit', _("Add New Customer"), true, '', 'default'); + submit_center('submit', _("Add New Customer"), true, '', false); } else { submit_center_first('submit', _("Update Customer"), - _('Update customer data'), $page_nested ? true : 'default'); + _('Update customer data'), $page_nested ? true : false); submit_return('select', $selected_id, _("Select this customer and return to document entry.")); submit_center_last('delete', _("Delete Customer"), _('Delete customer data if have been never used'), true); @@ -320,7 +322,7 @@ function customer_settings($selected_id) check_db_has_sales_types(_("There are no sales types defined. Please define at least one sales type before adding a customer.")); -start_form(); +start_form(true); if (db_has_customers()) { @@ -350,7 +352,8 @@ tabbed_content_start('tabs', array( 'settings' => array(_('&General settings'), $selected_id), 'contacts' => array(_('&Contacts'), $selected_id), 'transactions' => array(_('&Transactions'), (user_check_access('SA_SALESTRANSVIEW') ? $selected_id : null)), - 'orders' => array(_('Sales &Orders'), $selected_id), + 'orders' => array(_('Sales &Orders'), (user_check_access('SA_SALESTRANSVIEW') ? $selected_id : null)), + 'attachments' => array(_('Attachments'), (user_check_access('SA_ATTACHDOCUMENT') ? $selected_id : null)), )); switch (get_post('_tabs_sel')) { @@ -370,10 +373,15 @@ tabbed_content_start('tabs', array( $_GET['customer_id'] = $selected_id; include_once($path_to_root."/sales/inquiry/sales_orders_view.php"); break; + case 'attachments': + $_GET['trans_no'] = $selected_id; + $_GET['type_no']= ST_CUSTOMER; + $attachments = new attachments('attachment', $selected_id, 'customers'); + $attachments->show(); }; br(); tabbed_content_end(); end_form(); -end_page(); +end_page(@$_REQUEST['popup']);