Ehen automatic creating a branch the contact is also created on the customer.
[fa-stable.git] / sales / manage / customers.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_CUSTOMER';
13 $path_to_root = "../..";
14
15 include($path_to_root . "/includes/db_pager.inc");
16 include_once($path_to_root . "/includes/session.inc");
17 $js = "";
18 if ($use_popup_windows)
19         $js .= get_js_open_window(900, 500);
20 if ($use_date_picker)
21         $js .= get_js_date_picker();
22         
23 page(_($help_context = "Customers"), @$_REQUEST['popup'], false, "", $js); 
24
25 include_once($path_to_root . "/includes/date_functions.inc");
26 include_once($path_to_root . "/includes/banking.inc");
27 include_once($path_to_root . "/includes/ui.inc");
28 include_once($path_to_root . "/includes/ui/contacts_view.inc");
29
30 if (isset($_GET['debtor_no'])) 
31 {
32         $_POST['customer_id'] = $_GET['debtor_no'];
33 }
34
35 $selected_id = get_post('customer_id','');
36 //--------------------------------------------------------------------------------------------
37
38 function can_process()
39 {
40         if (strlen($_POST['CustName']) == 0) 
41         {
42                 display_error(_("The customer name cannot be empty."));
43                 set_focus('CustName');
44                 return false;
45         } 
46
47         if (strlen($_POST['cust_ref']) == 0) 
48         {
49                 display_error(_("The customer short name cannot be empty."));
50                 set_focus('cust_ref');
51                 return false;
52         } 
53         
54         if (!check_num('credit_limit', 0))
55         {
56                 display_error(_("The credit limit must be numeric and not less than zero."));
57                 set_focus('credit_limit');
58                 return false;           
59         } 
60         
61         if (!check_num('pymt_discount', 0, 100)) 
62         {
63                 display_error(_("The payment discount must be numeric and is expected to be less than 100% and greater than or equal to 0."));
64                 set_focus('pymt_discount');
65                 return false;           
66         } 
67         
68         if (!check_num('discount', 0, 100)) 
69         {
70                 display_error(_("The discount percentage must be numeric and is expected to be less than 100% and greater than or equal to 0."));
71                 set_focus('discount');
72                 return false;           
73         } 
74
75         return true;
76 }
77
78 //--------------------------------------------------------------------------------------------
79
80 function handle_submit(&$selected_id)
81 {
82         global $path_to_root, $Ajax, $auto_create_branch;
83
84         if (!can_process())
85                 return;
86                 
87         if ($selected_id) 
88         {
89                 update_customer($_POST['customer_id'], $_POST['CustName'], $_POST['cust_ref'], $_POST['address'],
90                         $_POST['tax_id'], $_POST['curr_code'], $_POST['dimension_id'], $_POST['dimension2_id'],
91                         $_POST['credit_status'], $_POST['payment_terms'], input_num('discount') / 100, input_num('pymt_discount') / 100,
92                         input_num('credit_limit'), $_POST['sales_type'], $_POST['notes']);
93
94                 update_record_status($_POST['customer_id'], $_POST['inactive'],
95                         'debtors_master', 'debtor_no');
96
97                 $Ajax->activate('customer_id'); // in case of status change
98                 display_notification(_("Customer has been updated."));
99         } 
100         else 
101         {       //it is a new customer
102
103                 begin_transaction();
104                 add_customer($_POST['CustName'], $_POST['cust_ref'], $_POST['address'],
105                         $_POST['tax_id'], $_POST['curr_code'], $_POST['dimension_id'], $_POST['dimension2_id'],
106                         $_POST['credit_status'], $_POST['payment_terms'], input_num('discount') / 100, input_num('pymt_discount') / 100,
107                         input_num('credit_limit'), $_POST['sales_type'], $_POST['notes']);
108
109                 $selected_id = $_POST['customer_id'] = db_insert_id();
110          
111                 if (isset($auto_create_branch) && $auto_create_branch == 1)
112                 {
113                 add_branch($selected_id, $_POST['CustName'], $_POST['cust_ref'],
114                 $_POST['address'], $_POST['salesman'], $_POST['area'], $_POST['tax_group_id'], '',
115                 get_company_pref('default_sales_discount_act'), get_company_pref('debtors_act'), get_company_pref('default_prompt_payment_act'),
116                 $_POST['location'], $_POST['address'], 0, 0, $_POST['ship_via'], $_POST['notes']);
117                 
118                 $selected_branch = db_insert_id();
119         
120                         add_crm_person($_POST['CustName'], $_POST['cust_ref'], '', $_POST['address'], 
121                                 $_POST['phone'], $_POST['phone2'], $_POST['fax'], $_POST['email'], '', '');
122
123                         add_crm_contact('cust_branch', 'general', $selected_branch, db_insert_id());
124
125                         add_crm_contact('customer', 'general', $selected_id, db_insert_id());
126                 }
127                 commit_transaction();
128
129                 display_notification(_("A new customer has been added."));
130
131                 if (isset($auto_create_branch) && $auto_create_branch == 1)
132                         display_notification(_("A default Branch has been automatically created, please check default Branch values by using link below."));
133                 
134                 $Ajax->activate('_page_body');
135         }
136 }
137 //--------------------------------------------------------------------------------------------
138
139 if (isset($_POST['submit'])) 
140 {
141         handle_submit($selected_id);
142 }
143 //-------------------------------------------------------------------------------------------- 
144
145 if (isset($_POST['delete'])) 
146 {
147
148         $cancel_delete = 0;
149
150         // PREVENT DELETES IF DEPENDENT RECORDS IN 'debtor_trans'
151
152         if (key_in_foreign_table($selected_id, 'debtor_trans', 'debtor_no'))
153         {
154                 $cancel_delete = 1;
155                 display_error(_("This customer cannot be deleted because there are transactions that refer to it."));
156         } 
157         else 
158         {
159                 if (key_in_foreign_table($selected_id, 'sales_orders', 'debtor_no'))
160                 {
161                         $cancel_delete = 1;
162                         display_error(_("Cannot delete the customer record because orders have been created against it."));
163                 } 
164                 else 
165                 {
166                         if (key_in_foreign_table($selected_id, 'cust_branch', 'debtor_no'))
167                         {
168                                 $cancel_delete = 1;
169                                 display_error(_("Cannot delete this customer because there are branch records set up against it."));
170                                 //echo "<br> There are " . $myrow[0] . " branch records relating to this customer";
171                         }
172                 }
173         }
174         
175         if ($cancel_delete == 0) 
176         {       //ie not cancelled the delete as a result of above tests
177         
178                 delete_customer($selected_id);
179
180                 display_notification(_("Selected customer has been deleted."));
181                 unset($_POST['customer_id']);
182                 $selected_id = '';
183                 $Ajax->activate('_page_body');
184         } //end if Delete Customer
185 }
186
187 function customer_settings($selected_id) 
188 {
189         global $SysPrefs, $path_to_root, $auto_create_branch;
190         
191         if (!$selected_id) 
192         {
193                 if (list_updated('customer_id') || !isset($_POST['CustName'])) {
194                         $_POST['CustName'] = $_POST['cust_ref'] = $_POST['address'] = $_POST['tax_id']  = '';
195                         $_POST['dimension_id'] = 0;
196                         $_POST['dimension2_id'] = 0;
197                         $_POST['sales_type'] = -1;
198                         $_POST['curr_code']  = get_company_currency();
199                         $_POST['credit_status']  = -1;
200                         $_POST['payment_terms']  = $_POST['notes']  = '';
201
202                         $_POST['discount']  = $_POST['pymt_discount'] = percent_format(0);
203                         $_POST['credit_limit']  = price_format($SysPrefs->default_credit_limit());
204                 }
205         }
206         else 
207         {
208                 $myrow = get_customer($selected_id);
209
210                 $_POST['CustName'] = $myrow["name"];
211                 $_POST['cust_ref'] = $myrow["debtor_ref"];
212                 $_POST['address']  = $myrow["address"];
213                 $_POST['tax_id']  = $myrow["tax_id"];
214                 $_POST['dimension_id']  = $myrow["dimension_id"];
215                 $_POST['dimension2_id']  = $myrow["dimension2_id"];
216                 $_POST['sales_type'] = $myrow["sales_type"];
217                 $_POST['curr_code']  = $myrow["curr_code"];
218                 $_POST['credit_status']  = $myrow["credit_status"];
219                 $_POST['payment_terms']  = $myrow["payment_terms"];
220                 $_POST['discount']  = percent_format($myrow["discount"] * 100);
221                 $_POST['pymt_discount']  = percent_format($myrow["pymt_discount"] * 100);
222                 $_POST['credit_limit']  = price_format($myrow["credit_limit"]);
223                 $_POST['notes']  = $myrow["notes"];
224                 $_POST['inactive'] = $myrow["inactive"];
225         }
226
227         start_outer_table(TABLESTYLE2);
228         table_section(1);
229         table_section_title(_("Name and Address"));
230
231         text_row(_("Customer Name:"), 'CustName', $_POST['CustName'], 40, 80);
232         text_row(_("Customer Short Name:"), 'cust_ref', null, 30, 30);
233         textarea_row(_("Address:"), 'address', $_POST['address'], 35, 5);
234
235         text_row(_("GSTNo:"), 'tax_id', null, 40, 40);
236
237
238         if (!$selected_id || is_new_customer($selected_id)) 
239         {
240                 currencies_list_row(_("Customer's Currency:"), 'curr_code', $_POST['curr_code']);
241         } 
242         else 
243         {
244                 label_row(_("Customer's Currency:"), $_POST['curr_code']);
245                 hidden('curr_code', $_POST['curr_code']);                               
246         }
247         sales_types_list_row(_("Sales Type/Price List:"), 'sales_type', $_POST['sales_type']);
248
249         if($selected_id)
250                 record_status_list_row(_("Customer status:"), 'inactive');
251         elseif (isset($auto_create_branch) && $auto_create_branch == 1)
252         {
253                 table_section_title(_("Branch"));
254                 text_row(_("Phone:"), 'phone', null, 32, 30);
255                 text_row(_("Secondary Phone Number:"), 'phone2', null, 32, 30);
256                 text_row(_("Fax Number:"), 'fax', null, 32, 30);
257                 email_row(_("E-mail:"), 'email', null, 35, 55);
258                 sales_persons_list_row( _("Sales Person:"), 'salesman', null);
259         }
260         table_section(2);
261
262         table_section_title(_("Sales"));
263
264         percent_row(_("Discount Percent:"), 'discount', $_POST['discount']);
265         percent_row(_("Prompt Payment Discount Percent:"), 'pymt_discount', $_POST['pymt_discount']);
266         amount_row(_("Credit Limit:"), 'credit_limit', $_POST['credit_limit']);
267
268         payment_terms_list_row(_("Payment Terms:"), 'payment_terms', $_POST['payment_terms']);
269         credit_status_list_row(_("Credit Status:"), 'credit_status', $_POST['credit_status']); 
270         $dim = get_company_pref('use_dimension');
271         if ($dim >= 1)
272                 dimensions_list_row(_("Dimension")." 1:", 'dimension_id', $_POST['dimension_id'], true, " ", false, 1);
273         if ($dim > 1)
274                 dimensions_list_row(_("Dimension")." 2:", 'dimension2_id', $_POST['dimension2_id'], true, " ", false, 2);
275         if ($dim < 1)
276                 hidden('dimension_id', 0);
277         if ($dim < 2)
278                 hidden('dimension2_id', 0);
279
280         if ($selected_id)  {
281                 start_row();
282                 echo '<td class="label">'._('Customer branches').':</td>';
283                 hyperlink_params_td($path_to_root . "/sales/manage/customer_branches.php",
284                         '<b>'. (@$_REQUEST['popup'] ?  _("Select or &Add") : _("&Add or Edit ")).'</b>', 
285                         "debtor_no=".$selected_id.(@$_REQUEST['popup'] ? '&popup=1':''));
286                 end_row();
287         }
288
289         textarea_row(_("General Notes:"), 'notes', null, 35, 5);
290         if (!$selected_id && isset($auto_create_branch) && $auto_create_branch == 1)
291         {
292                 table_section_title(_("Branch"));
293                 locations_list_row(_("Default Inventory Location:"), 'location');
294                 shippers_list_row(_("Default Shipping Company:"), 'ship_via');
295                 sales_areas_list_row( _("Sales Area:"), 'area', null);
296                 tax_groups_list_row(_("Tax Group:"), 'tax_group_id', null);
297         }
298         end_outer_table(1);
299
300         div_start('controls');
301         if (!$selected_id)
302         {
303                 submit_center('submit', _("Add New Customer"), true, '', 'default');
304         } 
305         else 
306         {
307                 submit_center_first('submit', _("Update Customer"), 
308                   _('Update customer data'), @$_REQUEST['popup'] ? true : 'default');
309                 submit_return('select', $selected_id, _("Select this customer and return to document entry."));
310                 submit_center_last('delete', _("Delete Customer"), 
311                   _('Delete customer data if have been never used'), true);
312         }
313         div_end();
314 }
315
316 //--------------------------------------------------------------------------------------------
317
318 check_db_has_sales_types(_("There are no sales types defined. Please define at least one sales type before adding a customer."));
319  
320 start_form();
321
322 if (db_has_customers()) 
323 {
324         start_table(TABLESTYLE_NOBORDER);
325         start_row();
326         customer_list_cells(_("Select a customer: "), 'customer_id', null,
327                 _('New customer'), true, check_value('show_inactive'));
328         check_cells(_("Show inactive:"), 'show_inactive', null, true);
329         end_row();
330         end_table();
331
332         if (get_post('_show_inactive_update')) {
333                 $Ajax->activate('customer_id');
334                 set_focus('customer_id');
335         }
336
337 else 
338 {
339         hidden('customer_id');
340 }
341
342 if (!$selected_id || list_updated('customer_id'))
343         unset($_POST['_tabs_sel']); // force settings tab for new customer
344
345 tabbed_content_start('tabs', array(
346                 'settings' => array(_('&General settings'), $selected_id),
347                 'contacts' => array(_('&Contacts'), $selected_id),
348                 'transactions' => array(_('&Transactions'), $selected_id),
349                 'orders' => array(_('Sales &Orders'), $selected_id),
350         ));
351         
352         switch (get_post('_tabs_sel')) {
353                 default:
354                 case 'settings':
355                         customer_settings($selected_id); 
356                         break;
357                 case 'contacts':
358                         $contacts = new contacts('contacts', $selected_id, 'customer');
359                         $contacts->show();
360                         break;
361                 case 'transactions':
362                         $_GET['customer_id'] = $selected_id;
363                         $_GET['popup'] = 1;
364                         include_once($path_to_root."/sales/inquiry/customer_inquiry.php");
365                         break;
366                 case 'orders':
367                         $_GET['customer_id'] = $selected_id;
368                         $_GET['popup'] = 1;
369                         include_once($path_to_root."/sales/inquiry/sales_orders_view.php");
370                         break;
371         };
372 br();
373 tabbed_content_end();
374
375 hidden('popup', @$_REQUEST['popup']);
376 end_form();
377 end_page(@$_REQUEST['popup']);
378
379 ?>