X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomers.php;h=7169596c89deb8485bd69dfe4c84765982164514;hb=b1a0e08b3d9f684ef42959dee87cbfd52a5c439e;hp=3810e2b4f2c271a0688ce61d4056c57d9d0a05e0;hpb=ae3b2bb8305be80dfb1e4e89bd10a0395c7db5ba;p=fa-stable.git diff --git a/sales/manage/customers.php b/sales/manage/customers.php index 3810e2b4..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'])) { @@ -304,12 +305,12 @@ function customer_settings($selected_id) 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); @@ -321,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()) { @@ -352,6 +353,7 @@ tabbed_content_start('tabs', array( 'contacts' => array(_('&Contacts'), $selected_id), 'transactions' => array(_('&Transactions'), (user_check_access('SA_SALESTRANSVIEW') ? $selected_id : null)), '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')) { @@ -371,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']);