When autocreating branch, no location were saved.
[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                         $result = get_item_locations(false);
114                         $loc = db_fetch($result);
115                         if ($loc === false)
116                                 $location = "";
117                         else
118                                 $location = $loc['loc_code'];
119                 add_branch($selected_id, $_POST['CustName'], $_POST['cust_ref'],
120                 $_POST['address'], $_POST['salesman'], $_POST['area'], $_POST['tax_group_id'], '',
121                 get_company_pref('default_sales_discount_act'), get_company_pref('debtors_act'), get_company_pref('default_prompt_payment_act'),
122                 $location, $_POST['address'], 0, 0, get_company_pref('default_ship_via'), $_POST['notes']);
123                 
124                 $selected_branch = db_insert_id();
125         
126                         add_crm_person($_POST['CustName'], $_POST['cust_ref'], '', $_POST['address'], 
127                                 $_POST['phone'], $_POST['phone2'], $_POST['fax'], $_POST['email'], '', '');
128
129                         add_crm_contact('cust_branch', 'general', $selected_branch, db_insert_id());
130                 }
131                 commit_transaction();
132
133                 display_notification(_("A new customer has been added."));
134
135                 if (isset($auto_create_branch) && $auto_create_branch == 1)
136                         display_notification(_("A default Branch has been automatically created, please check default Branch values by using link below."));
137                 
138                 $Ajax->activate('_page_body');
139         }
140 }
141 //--------------------------------------------------------------------------------------------
142
143 if (isset($_POST['submit'])) 
144 {
145         handle_submit($selected_id);
146 }
147 //-------------------------------------------------------------------------------------------- 
148
149 if (isset($_POST['delete'])) 
150 {
151
152         $cancel_delete = 0;
153
154         // PREVENT DELETES IF DEPENDENT RECORDS IN 'debtor_trans'
155
156         if (key_in_foreign_table($selected_id, 'debtor_trans', 'debtor_no'))
157         {
158                 $cancel_delete = 1;
159                 display_error(_("This customer cannot be deleted because there are transactions that refer to it."));
160         } 
161         else 
162         {
163                 if (key_in_foreign_table($selected_id, 'sales_orders', 'debtor_no'))
164                 {
165                         $cancel_delete = 1;
166                         display_error(_("Cannot delete the customer record because orders have been created against it."));
167                 } 
168                 else 
169                 {
170                         if (key_in_foreign_table($selected_id, 'cust_branch', 'debtor_no'))
171                         {
172                                 $cancel_delete = 1;
173                                 display_error(_("Cannot delete this customer because there are branch records set up against it."));
174                                 //echo "<br> There are " . $myrow[0] . " branch records relating to this customer";
175                         }
176                 }
177         }
178         
179         if ($cancel_delete == 0) 
180         {       //ie not cancelled the delete as a result of above tests
181         
182                 delete_customer($selected_id);
183
184                 display_notification(_("Selected customer has been deleted."));
185                 unset($_POST['customer_id']);
186                 $selected_id = '';
187                 $Ajax->activate('_page_body');
188         } //end if Delete Customer
189 }
190
191 function customer_settings($selected_id) 
192 {
193         global $SysPrefs, $path_to_root, $auto_create_branch;
194         
195         if (!$selected_id) 
196         {
197                 if (list_updated('customer_id') || !isset($_POST['CustName'])) {
198                         $_POST['CustName'] = $_POST['cust_ref'] = $_POST['address'] = $_POST['tax_id']  = '';
199                         $_POST['dimension_id'] = 0;
200                         $_POST['dimension2_id'] = 0;
201                         $_POST['sales_type'] = -1;
202                         $_POST['curr_code']  = get_company_currency();
203                         $_POST['credit_status']  = -1;
204                         $_POST['payment_terms']  = $_POST['notes']  = '';
205
206                         $_POST['discount']  = $_POST['pymt_discount'] = percent_format(0);
207                         $_POST['credit_limit']  = price_format($SysPrefs->default_credit_limit());
208                 }
209         }
210         else 
211         {
212                 $myrow = get_customer($selected_id);
213
214                 $_POST['CustName'] = $myrow["name"];
215                 $_POST['cust_ref'] = $myrow["debtor_ref"];
216                 $_POST['address']  = $myrow["address"];
217                 $_POST['tax_id']  = $myrow["tax_id"];
218                 $_POST['dimension_id']  = $myrow["dimension_id"];
219                 $_POST['dimension2_id']  = $myrow["dimension2_id"];
220                 $_POST['sales_type'] = $myrow["sales_type"];
221                 $_POST['curr_code']  = $myrow["curr_code"];
222                 $_POST['credit_status']  = $myrow["credit_status"];
223                 $_POST['payment_terms']  = $myrow["payment_terms"];
224                 $_POST['discount']  = percent_format($myrow["discount"] * 100);
225                 $_POST['pymt_discount']  = percent_format($myrow["pymt_discount"] * 100);
226                 $_POST['credit_limit']  = price_format($myrow["credit_limit"]);
227                 $_POST['notes']  = $myrow["notes"];
228                 $_POST['inactive'] = $myrow["inactive"];
229         }
230
231         start_outer_table(TABLESTYLE2);
232         table_section(1);
233         table_section_title(_("Name and Address"));
234
235         text_row(_("Customer Name:"), 'CustName', $_POST['CustName'], 40, 80);
236         text_row(_("Customer Short Name:"), 'cust_ref', null, 30, 30);
237         textarea_row(_("Address:"), 'address', $_POST['address'], 35, 5);
238
239         text_row(_("GSTNo:"), 'tax_id', null, 40, 40);
240
241
242         if (!$selected_id || is_new_customer($selected_id)) 
243         {
244                 currencies_list_row(_("Customer's Currency:"), 'curr_code', $_POST['curr_code']);
245         } 
246         else 
247         {
248                 label_row(_("Customer's Currency:"), $_POST['curr_code']);
249                 hidden('curr_code', $_POST['curr_code']);                               
250         }
251         sales_types_list_row(_("Sales Type/Price List:"), 'sales_type', $_POST['sales_type']);
252
253         if($selected_id)
254                 record_status_list_row(_("Customer status:"), 'inactive');
255         elseif (isset($auto_create_branch) && $auto_create_branch == 1)
256         {
257                 table_section_title(_("Branch"));
258                 text_row(_("Phone:"), 'phone', null, 32, 30);
259                 text_row(_("Secondary Phone Number:"), 'phone2', null, 32, 30);
260                 text_row(_("Fax Number:"), 'fax', null, 32, 30);
261                 email_row(_("E-mail:"), 'email', null, 35, 55);
262         }
263         table_section(2);
264
265         table_section_title(_("Sales"));
266
267         percent_row(_("Discount Percent:"), 'discount', $_POST['discount']);
268         percent_row(_("Prompt Payment Discount Percent:"), 'pymt_discount', $_POST['pymt_discount']);
269         amount_row(_("Credit Limit:"), 'credit_limit', $_POST['credit_limit']);
270
271         payment_terms_list_row(_("Payment Terms:"), 'payment_terms', $_POST['payment_terms']);
272         credit_status_list_row(_("Credit Status:"), 'credit_status', $_POST['credit_status']); 
273         $dim = get_company_pref('use_dimension');
274         if ($dim >= 1)
275                 dimensions_list_row(_("Dimension")." 1:", 'dimension_id', $_POST['dimension_id'], true, " ", false, 1);
276         if ($dim > 1)
277                 dimensions_list_row(_("Dimension")." 2:", 'dimension2_id', $_POST['dimension2_id'], true, " ", false, 2);
278         if ($dim < 1)
279                 hidden('dimension_id', 0);
280         if ($dim < 2)
281                 hidden('dimension2_id', 0);
282
283         if ($selected_id)  {
284                 start_row();
285                 echo '<td class="label">'._('Customer branches').':</td>';
286                 hyperlink_params_td($path_to_root . "/sales/manage/customer_branches.php",
287                         '<b>'. (@$_REQUEST['popup'] ?  _("Select or &Add") : _("&Add or Edit ")).'</b>', 
288                         "debtor_no=".$selected_id.(@$_REQUEST['popup'] ? '&popup=1':''));
289                 end_row();
290         }
291
292         textarea_row(_("General Notes:"), 'notes', null, 35, 5);
293         if (!$selected_id && isset($auto_create_branch) && $auto_create_branch == 1)
294         {
295                 table_section_title(_("Branch"));
296                 sales_persons_list_row( _("Sales Person:"), 'salesman', null);
297                 sales_areas_list_row( _("Sales Area:"), 'area', null);
298                 tax_groups_list_row(_("Tax Group:"), 'tax_group_id', null);
299         }
300         end_outer_table(1);
301
302         div_start('controls');
303         if (!$selected_id)
304         {
305                 submit_center('submit', _("Add New Customer"), true, '', 'default');
306         } 
307         else 
308         {
309                 submit_center_first('submit', _("Update Customer"), 
310                   _('Update customer data'), @$_REQUEST['popup'] ? true : 'default');
311                 submit_return('select', $selected_id, _("Select this customer and return to document entry."));
312                 submit_center_last('delete', _("Delete Customer"), 
313                   _('Delete customer data if have been never used'), true);
314         }
315         div_end();
316 }
317
318 //--------------------------------------------------------------------------------------------
319
320 check_db_has_sales_types(_("There are no sales types defined. Please define at least one sales type before adding a customer."));
321  
322 start_form();
323
324 if (db_has_customers()) 
325 {
326         start_table(TABLESTYLE_NOBORDER);
327         start_row();
328         customer_list_cells(_("Select a customer: "), 'customer_id', null,
329                 _('New customer'), true, check_value('show_inactive'));
330         check_cells(_("Show inactive:"), 'show_inactive', null, true);
331         end_row();
332         end_table();
333
334         if (get_post('_show_inactive_update')) {
335                 $Ajax->activate('customer_id');
336                 set_focus('customer_id');
337         }
338
339 else 
340 {
341         hidden('customer_id');
342 }
343
344 if (!$selected_id)
345         unset($_POST['_tabs_sel']); // force settings tab for new customer
346
347 tabbed_content_start('tabs', array(
348                 'settings' => array(_('&General settings'), $selected_id),
349                 'contacts' => array(_('&Contacts'), $selected_id),
350                 'transactions' => array(_('&Transactions'), $selected_id),
351                 'orders' => array(_('Sales &Orders'), $selected_id),
352         ));
353         
354         switch (get_post('_tabs_sel')) {
355                 default:
356                 case 'settings':
357                         customer_settings($selected_id); 
358                         break;
359                 case 'contacts':
360                         $contacts = new contacts('contacts', $selected_id, 'customer');
361                         $contacts->show();
362                         break;
363                 case 'transactions':
364                         $_GET['customer_id'] = $selected_id;
365                         $_GET['popup'] = 1;
366                         include_once($path_to_root."/sales/inquiry/customer_inquiry.php");
367                         break;
368                 case 'orders':
369                         $_GET['customer_id'] = $selected_id;
370                         $_GET['popup'] = 1;
371                         include_once($path_to_root."/sales/inquiry/sales_orders_view.php");
372                         break;
373         };
374 br();
375 tabbed_content_end();
376
377 hidden('popup', @$_REQUEST['popup']);
378 end_form();
379 end_page(@$_REQUEST['popup']);
380
381 ?>