X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomers.php;h=7169596c89deb8485bd69dfe4c84765982164514;hb=a9e7141956ef0a60b58e9a627beee93cd35ed43c;hp=e7e21e894dab641b8f74eb2ac02a33e674f2833d;hpb=d1babda7c01b314d35fb89f2d195553b55936532;p=fa-stable.git diff --git a/sales/manage/customers.php b/sales/manage/customers.php index e7e21e89..7169596c 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -26,6 +26,7 @@ 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'])) { @@ -187,7 +188,7 @@ if (isset($_POST['delete'])) function customer_settings($selected_id) { - global $SysPrefs, $path_to_root; + global $SysPrefs, $path_to_root, $page_nested; if (!$selected_id) { @@ -284,8 +285,8 @@ function customer_settings($selected_id) start_row(); echo ''._('Customer branches').':'; hyperlink_params_td($path_to_root . "/sales/manage/customer_branches.php", - ''. (@$_REQUEST['popup'] ? _("Select or &Add") : _("&Add or Edit ")).'', - "debtor_no=".$selected_id.(@$_REQUEST['popup'] ? '&popup=1':'')); + ''. ($page_nested ? _("Select or &Add") : _("&Add or Edit ")).'', + "debtor_no=".$selected_id.($page_nested ? '&popup=1':'')); end_row(); } @@ -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'), @$_REQUEST['popup'] ? 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()) { @@ -349,8 +351,9 @@ 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), + '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')) { @@ -370,11 +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(); -hidden('popup', @$_REQUEST['popup']); end_form(); end_page(@$_REQUEST['popup']);