Better layout. Copyright notes. Mailto links.
[fa-stable.git] / sales / manage / customers.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 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/agpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 3;
13 $path_to_root="../..";
14
15 include_once($path_to_root . "/includes/session.inc");
16 page(_("Customers")); 
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/includes/banking.inc");
20 include_once($path_to_root . "/includes/ui.inc");
21
22 if (isset($_GET['debtor_no'])) 
23 {
24         $_POST['customer_id'] = $_GET['debtor_no'];
25 }
26 $new_customer = (!isset($_POST['customer_id']) || $_POST['customer_id'] == ""); 
27 //--------------------------------------------------------------------------------------------
28
29 function can_process()
30 {
31         if (strlen($_POST['CustName']) == 0) 
32         {
33                 display_error(_("The customer name cannot be empty."));
34                 set_focus('CustName');
35                 return false;
36         } 
37         
38         if (!check_num('credit_limit', 0))
39         {
40                 display_error(_("The credit limit must be numeric and not less than zero."));
41                 set_focus('credit_limit');
42                 return false;           
43         } 
44         
45         if (!check_num('pymt_discount', 0, 100)) 
46         {
47                 display_error(_("The payment discount must be numeric and is expected to be less than 100% and greater than or equal to 0."));
48                 set_focus('pymt_discount');
49                 return false;           
50         } 
51         
52         if (!check_num('discount', 0, 100)) 
53         {
54                 display_error(_("The discount percentage must be numeric and is expected to be less than 100% and greater than or equal to 0."));
55                 set_focus('discount');
56                 return false;           
57         } 
58
59         return true;
60 }
61
62 //--------------------------------------------------------------------------------------------
63
64 function handle_submit()
65 {
66         global $path_to_root, $new_customer, $Ajax;
67
68         if (!can_process())
69                 return;
70                 
71         if ($new_customer == false) 
72         {
73
74                 $sql = "UPDATE ".TB_PREF."debtors_master SET name=" . db_escape($_POST['CustName']) . ", 
75                         address=".db_escape($_POST['address']) . ", 
76                         tax_id=".db_escape($_POST['tax_id']) . ", 
77                         curr_code=".db_escape($_POST['curr_code']) . ", 
78                         email=".db_escape($_POST['email']) . ", 
79                         dimension_id=".db_escape($_POST['dimension_id']) . ", 
80                         dimension2_id=".db_escape($_POST['dimension2_id']) . ", 
81             credit_status=".db_escape($_POST['credit_status']) . ", 
82             payment_terms=".db_escape($_POST['payment_terms']) . ", 
83             discount=" . input_num('discount') / 100 . ", 
84             pymt_discount=" . input_num('pymt_discount') / 100 . ", 
85             credit_limit=" . input_num('credit_limit') . ", 
86             sales_type = ".db_escape($_POST['sales_type']) . " 
87             WHERE debtor_no = '". $_POST['customer_id'] . "'";
88
89                 db_query($sql,"The customer could not be updated");
90                 display_notification(_("Customer has been updated."));
91         } 
92         else 
93         {       //it is a new customer
94
95                 begin_transaction();
96
97                 $sql = "INSERT INTO ".TB_PREF."debtors_master (name, address, tax_id, email, dimension_id, dimension2_id,  
98                         curr_code, credit_status, payment_terms, discount, pymt_discount,credit_limit,  
99                         sales_type) VALUES (".db_escape($_POST['CustName']) .", " 
100                         .db_escape($_POST['address']) . ", " . db_escape($_POST['tax_id']) . ","
101                         .db_escape($_POST['email']) . ", ".db_escape($_POST['dimension_id']) . ", " 
102                         .db_escape($_POST['dimension2_id']) . ", ".db_escape($_POST['curr_code']) . ", 
103                         " . db_escape($_POST['credit_status']) . ", ".db_escape($_POST['payment_terms']) . ", " . input_num('discount')/100 . ", 
104                         " . input_num('pymt_discount')/100 . ", " . input_num('credit_limit') . ", ".db_escape($_POST['sales_type']) . ")";
105
106                 db_query($sql,"The customer could not be added");
107
108                 $_POST['customer_id'] = db_insert_id();
109                 $new_customer = false;
110                 commit_transaction();                   
111
112                 display_notification(_("A new customer has been added."));
113
114                 $Ajax->activate('_page_body');
115         }
116 }
117 //--------------------------------------------------------------------------------------------
118
119 if (isset($_POST['submit'])) 
120 {
121         handle_submit();
122 }
123 //-------------------------------------------------------------------------------------------- 
124
125 if (isset($_POST['select']))
126 {
127         context_return(array('customer_id' => $_POST['customer_id'], 
128                 'branch_id' => '')); // this fires customer history checks
129 }
130 //-------------------------------------------------------------------------------------------- 
131
132 if (isset($_POST['delete'])) 
133 {
134
135         //the link to delete a selected record was clicked instead of the submit button
136
137         $cancel_delete = 0;
138
139         // PREVENT DELETES IF DEPENDENT RECORDS IN 'debtor_trans'
140
141         $sql= "SELECT COUNT(*) FROM ".TB_PREF."debtor_trans WHERE debtor_no='" . $_POST['customer_id'] . "'";
142         $result = db_query($sql,"check failed");
143         $myrow = db_fetch_row($result);
144         if ($myrow[0] > 0) 
145         {
146                 $cancel_delete = 1;
147                 display_error(_("This customer cannot be deleted because there are transactions that refer to it."));
148         } 
149         else 
150         {
151                 $sql= "SELECT COUNT(*) FROM ".TB_PREF."sales_orders WHERE debtor_no='" . $_POST['customer_id'] . "'";
152                 $result = db_query($sql,"check failed");
153                 $myrow = db_fetch_row($result);
154                 if ($myrow[0] > 0) 
155                 {
156                         $cancel_delete = 1;
157                         display_error(_("Cannot delete the customer record because orders have been created against it."));
158                 } 
159                 else 
160                 {
161                         $sql = "SELECT COUNT(*) FROM ".TB_PREF."cust_branch WHERE debtor_no='" . $_POST['customer_id'] . "'";
162                         $result = db_query($sql,"check failed");
163                         $myrow = db_fetch_row($result);
164                         if ($myrow[0] > 0) 
165                         {
166                                 $cancel_delete = 1;
167                                 display_error(_("Cannot delete this customer because there are branch records set up against it."));
168                                 //echo "<br> There are " . $myrow[0] . " branch records relating to this customer";
169                         }
170                 }
171         }
172         
173         if ($cancel_delete == 0) 
174         {       //ie not cancelled the delete as a result of above tests
175                 $sql = "DELETE FROM ".TB_PREF."debtors_master WHERE debtor_no='" . $_POST['customer_id'] . "'";
176                 db_query($sql,"cannot delete customer");
177
178                 display_notification(_("Selected customer has been deleted."));
179                 unset($_POST['customer_id']);
180                 $new_customer = true;
181                 $Ajax->activate('_page_body');
182         } //end if Delete Customer
183 }
184
185 check_db_has_sales_types(_("There are no sales types defined. Please define at least one sales type before adding a customer."));
186  
187 start_form();
188
189 if (db_has_customers()) 
190 {
191         start_table("class = 'tablestyle_noborder'");
192         customer_list_row(_("Select a customer: "), 'customer_id', null,
193           _('New customer'), true);
194         end_table();
195
196 else 
197 {
198         hidden('customer_id');
199 }
200
201 br();
202 start_table($table_style2, 5);
203 echo "<tr valign=top><td>"; // outer table      
204
205 echo "<table>";
206
207 if ($new_customer) 
208 {
209         $_POST['CustName'] = $_POST['address'] = $_POST['tax_id']  = '';
210         $_POST['dimension_id'] = 0;
211         $_POST['dimension2_id'] = 0;
212         $_POST['sales_type'] = -1;
213         $_POST['email'] = '';
214         $_POST['curr_code']  = get_company_currency();
215         $_POST['credit_status']  = -1;
216         $_POST['payment_terms']  = '';
217         $_POST['discount']  = $_POST['pymt_discount'] = percent_format(0);
218         $_POST['credit_limit']  = price_format(sys_prefs::default_credit_limit());
219
220 else 
221 {
222
223         $sql = "SELECT * FROM ".TB_PREF."debtors_master WHERE debtor_no = '" . $_POST['customer_id'] . "'";
224         $result = db_query($sql,"check failed");
225
226         $myrow = db_fetch($result);
227
228         $_POST['CustName'] = $myrow["name"];
229         $_POST['address']  = $myrow["address"];
230         $_POST['tax_id']  = $myrow["tax_id"];
231         $_POST['email']  = $myrow["email"];
232         $_POST['dimension_id']  = $myrow["dimension_id"];
233         $_POST['dimension2_id']  = $myrow["dimension2_id"];
234         $_POST['sales_type'] = $myrow["sales_type"];
235         $_POST['curr_code']  = $myrow["curr_code"];
236         $_POST['credit_status']  = $myrow["credit_status"];
237         $_POST['payment_terms']  = $myrow["payment_terms"];
238         $_POST['discount']  = percent_format($myrow["discount"] * 100);
239         $_POST['pymt_discount']  = percent_format($myrow["pymt_discount"] * 100);
240         $_POST['credit_limit']  = price_format($myrow["credit_limit"]);
241 }
242
243 table_section_title(_("Name and Address"));
244
245 text_row(_("Customer Name:"), 'CustName', $_POST['CustName'], 40, 40);
246 textarea_row(_("Address:"), 'address', $_POST['address'], 35, 5);
247
248 text_row("<a href='Mailto:".$_POST['email']."'>" . _("E-mail:") . "</a>", 'email', null, 40, 40);
249 text_row(_("GSTNo:"), 'tax_id', null, 40, 40);
250
251
252 // Sherifoz 23.09.03 currency can't be changed if editing
253 if ($new_customer) 
254 {
255         currencies_list_row(_("Customer's Currency:"), 'curr_code', $_POST['curr_code']);
256
257 else 
258 {
259         label_row(_("Customer's Currency:"), $_POST['curr_code']);
260         hidden('curr_code', $_POST['curr_code']);                               
261 }       
262 end_table();
263
264 echo "</td><td class='tableseparator'>"; // outer table
265
266 echo"<table>";
267
268 table_section_title(_("Sales"));
269
270 sales_types_list_row(_("Sales Type/Price List:"), 'sales_type', $_POST['sales_type']);
271 percent_row(_("Discount Percent:"), 'discount', $_POST['discount']);
272 percent_row(_("Prompt Payment Discount Percent:"), 'pymt_discount', $_POST['pymt_discount']);
273 amount_row(_("Credit Limit:"), 'credit_limit', $_POST['credit_limit']);
274
275 payment_terms_list_row(_("Payment Terms:"), 'payment_terms', $_POST['payment_terms']);
276 credit_status_list_row(_("Credit Status:"), 'credit_status', $_POST['credit_status']); 
277 $dim = get_company_pref('use_dimension');
278 if ($dim >= 1)
279         dimensions_list_row(_("Dimension")." 1:", 'dimension_id', $_POST['dimension_id'], true, " ", false, 1);
280 if ($dim > 1)
281         dimensions_list_row(_("Dimension")." 2:", 'dimension2_id', $_POST['dimension2_id'], true, " ", false, 2);
282 if ($dim < 1)
283         hidden('dimension_id', 0);
284 if ($dim < 2)
285         hidden('dimension2_id', 0);
286
287 if (!$new_customer)  {
288         start_row();
289         echo '<td>'._('Customer branches').':</td>';
290         hyperlink_params_td($path_to_root . "/sales/manage/customer_branches.php",
291                 '<b>'. (count($_SESSION['Context']) ?  _("Select or &Add") : _("&Add or Edit ")).'</b>', 
292                 "debtor_no=".$_POST['customer_id']);
293         end_row();
294 }
295 end_table();
296
297 end_table(1); // outer table    
298 div_start('controls');
299 if ($new_customer)
300 {
301         submit_center('submit', _("Add New Customer"), true, '', true);
302
303 else 
304 {
305         submit_center_first('submit', _("Update Customer"), 
306           _('Update customer data'), true);
307         submit_return('select', _("Return"), _("Select this customer and return to document entry."), true);
308         submit_center_last('delete', _("Delete Customer"), 
309           _('Delete customer data if have been never used'), true);
310 }
311 div_end();
312 end_form();
313 end_page();
314
315 ?>