Recurring invoices result in no dimensions on gl_trans. Fixed by company flag option.
[fa-stable.git] / sales / manage / customers.php
index d00bfdc04390a90c42fae5f52886c5bf5c3d8e04..7169596c89deb8485bd69dfe4c84765982164514 100644 (file)
@@ -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()) 
 {
@@ -351,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')) {
@@ -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']);