Merged changes from main branch up to 2.1.3.
[fa-stable.git] / sales / manage / customer_branches.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 = 3;
13 $path_to_root="../..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_("Customer Branches"));
17
18 include($path_to_root . "/includes/ui.inc");
19
20 //-----------------------------------------------------------------------------------------------
21
22 check_db_has_customers(_("There are no customers defined in the system. Please define a customer to add customer branches."));
23
24 check_db_has_sales_people(_("There are no sales people defined in the system. At least one sales person is required before proceeding."));
25
26 check_db_has_sales_areas(_("There are no sales areas defined in the system. At least one sales area is required before proceeding."));
27
28 check_db_has_shippers(_("There are no shipping companies defined in the system. At least one shipping company is required before proceeding."));
29
30 check_db_has_tax_groups(_("There are no tax groups defined in the system. At least one tax group is required before proceeding."));
31
32 simple_page_mode(true);
33 //-----------------------------------------------------------------------------------------------
34
35 if (isset($_GET['debtor_no']))
36 {
37         $_POST['customer_id'] = strtoupper($_GET['debtor_no']);
38 }
39 $_POST['branch_code'] = $selected_id;
40
41 if (isset($_GET['SelectedBranch']))
42 {
43         $_POST['branch_code'] = strtoupper($_GET['SelectedBranch']);
44         $selected_id = $_GET['SelectedBranch'];
45 }
46
47 $id = find_submit('Select');
48 if ($id != -1)
49 {
50         context_return(array('customer_id' => $_POST['customer_id'],
51                 'branch_id' => $id)); // return to sales document
52 }
53
54 //-----------------------------------------------------------------------------------------------
55
56 if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM')
57 {
58
59         //initialise no input errors assumed initially before we test
60         $input_error = 0;
61
62         //first off validate inputs sensible
63
64         if (strlen($_POST['br_name']) == 0)
65         {
66                 $input_error = 1;
67                 display_error(_("The Branch name cannot be empty."));
68                 set_focus('br_name');
69         }
70
71         if ($input_error != 1)
72         {
73
74         if ($selected_id != -1)
75                 {
76                         /*SelectedBranch could also exist if submit had not been clicked this code would not run in this case cos submit is false of course see the     delete code below*/
77
78                         $sql = "UPDATE ".TB_PREF."cust_branch SET br_name = " . db_escape($_POST['br_name']) . ",
79                                 br_address = ".db_escape($_POST['br_address']). ",
80                 phone=".db_escape($_POST['phone']). ",
81                 fax=".db_escape($_POST['fax']).",
82                 contact_name=".db_escape($_POST['contact_name']) . ",
83                 salesman= ".db_escape($_POST['salesman']) . ",
84                 area=".db_escape($_POST['area']) . ",
85                 email=".db_escape($_POST['email']) . ",
86                 tax_group_id=".db_escape($_POST['tax_group_id']). ",
87                                 sales_account=".db_escape($_POST['sales_account']) . ",
88                                 sales_discount_account=".db_escape($_POST['sales_discount_account']) . ",
89                                 receivables_account=".db_escape($_POST['receivables_account']) . ",
90                                 payment_discount_account=".db_escape($_POST['payment_discount_account']) . ",
91                 default_location=".db_escape($_POST['default_location']) . ",
92                 br_post_address =".db_escape($_POST['br_post_address']) . ",
93                 disable_trans=".db_escape($_POST['disable_trans']) . ",
94                                 group_no=".db_escape($_POST['group_no']) . ", 
95                 default_ship_via=".db_escape($_POST['default_ship_via']) . "
96                 WHERE branch_code =".db_escape($_POST['branch_code']) . "
97                 AND debtor_no=".db_escape($_POST['customer_id']);
98
99                         $note =_('Selected customer branch has been updated');
100                 }
101                 else
102                 {
103                         /*Selected branch is null cos no item selected on first time round so must be adding a  record must be submitting new entries in the new Customer Branches form */
104                         $sql = "INSERT INTO ".TB_PREF."cust_branch (debtor_no, br_name, br_address,
105                                 salesman, phone, fax,
106                                 contact_name, area, email, tax_group_id, sales_account, receivables_account, payment_discount_account, sales_discount_account, default_location,
107                                 br_post_address, disable_trans, group_no, default_ship_via)
108                                 VALUES (".db_escape($_POST['customer_id']). ",".db_escape($_POST['br_name']) . ", "
109                                         .db_escape($_POST['br_address']) . ", ".db_escape($_POST['salesman']) . ", "
110                                         .db_escape($_POST['phone']) . ", ".db_escape($_POST['fax']) . ","
111                                         .db_escape($_POST['contact_name']) . ", ".db_escape($_POST['area']) . ","
112                                         .db_escape($_POST['email']) . ", ".db_escape($_POST['tax_group_id']) . ", "
113                                         .db_escape($_POST['sales_account']) . ", "
114                                         .db_escape($_POST['receivables_account']) . ", "
115                                         .db_escape($_POST['payment_discount_account']) . ", "
116                                         .db_escape($_POST['sales_discount_account']) . ", "
117                                         .db_escape($_POST['default_location']) . ", "
118                                         .db_escape($_POST['br_post_address']) . ","
119                                         .db_escape($_POST['disable_trans']) . ", "
120                                         .db_escape($_POST['group_no']) . ", "                                   
121                                         .db_escape($_POST['default_ship_via']) . ")";
122
123                         $note = _('New customer branch has been added');
124                 }
125
126                 //run the sql from either of the above possibilites
127                 db_query($sql,"The branch record could not be inserted or updated");
128                 display_notification($note);
129                 $Mode = 'RESET';
130         }
131
132 }
133 elseif ($Mode == 'Delete')
134 {
135         //the link to delete a selected record was clicked instead of the submit button
136
137         // PREVENT DELETES IF DEPENDENT RECORDS IN 'debtor_trans'
138
139         $sql= "SELECT COUNT(*) FROM ".TB_PREF."debtor_trans WHERE branch_code='" . $_POST['branch_code']. "' AND debtor_no = '" . $_POST['customer_id']. "'";
140         $result = db_query($sql,"could not query debtortrans");
141         $myrow = db_fetch_row($result);
142         if ($myrow[0] > 0)
143         {
144                 display_error(_("Cannot delete this branch because customer transactions have been created to this branch."));
145
146         }
147         else
148         {
149                 $sql= "SELECT COUNT(*) FROM ".TB_PREF."sales_orders WHERE branch_code='" . $_POST['branch_code']. "' AND debtor_no = '" . $_POST['customer_id']. "'";
150                 $result = db_query($sql,"could not query sales orders");
151
152                 $myrow = db_fetch_row($result);
153                 if ($myrow[0] > 0)
154                 {
155                         display_error(_("Cannot delete this branch because sales orders exist for it. Purge old sales orders first."));
156                 }
157                 else
158                 {
159                         $sql="DELETE FROM ".TB_PREF."cust_branch WHERE branch_code='" . $_POST['branch_code']. "' AND debtor_no='" . $_POST['customer_id']. "'";
160                         db_query($sql,"could not delete branch");
161                         display_notification(_('Selected customer branch has been deleted'));
162                 }
163         } //end ifs to test if the branch can be deleted
164         $Mode = 'RESET';
165 }
166
167 if ($Mode == 'RESET' || get_post('_customer_id_update'))
168 {
169         $selected_id = -1;
170         $cust_id = $_POST['customer_id'];
171         $inact = get_post('show_inactive');
172         unset($_POST);
173         $_POST['show_inactive'] = $inact;
174         $_POST['customer_id'] = $cust_id;
175         $Ajax->activate('_page_body');
176 }
177 start_form();
178
179 echo "<center>" . _("Select a customer: ") . "&nbsp;&nbsp;";
180 customer_list('customer_id', null, false, true);
181 echo "</center><br>";
182
183 $num_branches = db_customer_has_branches($_POST['customer_id']);
184
185 if ($num_branches)
186 {
187         $sql = "SELECT ".TB_PREF."debtors_master.name, ".TB_PREF."cust_branch.*, ".TB_PREF."salesman.salesman_name,
188                 ".TB_PREF."areas.description, ".TB_PREF."tax_groups.name AS tax_group_name
189                 FROM ".TB_PREF."cust_branch, ".TB_PREF."debtors_master, ".TB_PREF."areas, ".TB_PREF."salesman, ".TB_PREF."tax_groups
190                 WHERE ".TB_PREF."cust_branch.debtor_no=".TB_PREF."debtors_master.debtor_no
191                 AND ".TB_PREF."cust_branch.tax_group_id=".TB_PREF."tax_groups.id
192                 AND ".TB_PREF."cust_branch.area=".TB_PREF."areas.area_code
193                 AND ".TB_PREF."cust_branch.salesman=".TB_PREF."salesman.salesman_code
194                 AND ".TB_PREF."cust_branch.debtor_no = '" . $_POST['customer_id']. "'";
195
196         if (!check_value('show_inactive')) $sql .= " AND !".TB_PREF."cust_branch.inactive";
197
198         $result = db_query($sql,"could not get customer branches");
199
200         start_table("$table_style width=60%");
201
202         $th = array(_("Name"), _("Contact"), _("Sales Person"), _("Area"),
203                 _("Phone No"), _("Fax No"), _("E-mail"), _("Tax Group"), "", "");
204         inactive_control_column($th);
205         if (count($_SESSION['Context'])) $th[] = '';
206
207         table_header($th);
208
209         while ($myrow = db_fetch($result))
210         {
211                 start_row();
212                 label_cell($myrow["br_name"]);
213                 label_cell($myrow["contact_name"]);
214                 label_cell($myrow["salesman_name"]);
215                 label_cell($myrow["description"]);
216                 label_cell($myrow["phone"]);
217                 label_cell($myrow["fax"]);
218                 email_cell($myrow["email"]);
219                 label_cell($myrow["tax_group_name"]);
220                 inactive_control_cell($myrow["branch_code"], $myrow["inactive"],
221                         'cust_branch', 'branch_code');
222                 if (count($_SESSION['Context']))
223                         button_cell("Select".$myrow["branch_code"], _("Select"), '', ICON_ADD);
224                 edit_button_cell("Edit".$myrow["branch_code"], _("Edit"));
225                 delete_button_cell("Delete".$myrow["branch_code"], _("Delete"));
226                 end_row();
227         }
228         inactive_control_row($th);
229         end_table(1);
230         //END WHILE LIST LOOP
231 }
232 else
233         display_note(_("The selected customer does not have any branches. Please create at least one branch."));
234
235 start_outer_table($table_style2, 5);
236
237 table_section(1);
238
239 $_POST['email'] = "";
240 if ($selected_id != -1)
241 {
242         if ($Mode == 'Edit') {
243
244                 //editing an existing branch
245         $sql = "SELECT * FROM ".TB_PREF."cust_branch
246                         WHERE branch_code='" . $_POST['branch_code'] . "'
247                         AND debtor_no='" . $_POST['customer_id'] . "'";
248                 $result = db_query($sql,"check failed");
249             $myrow = db_fetch($result);
250                 set_focus('br_name');
251         $_POST['branch_code'] = $myrow["branch_code"];
252             $_POST['br_name']  = $myrow["br_name"];
253             $_POST['br_address']  = $myrow["br_address"];
254             $_POST['br_post_address']  = $myrow["br_post_address"];
255             $_POST['contact_name'] = $myrow["contact_name"];
256             $_POST['salesman'] =$myrow["salesman"];
257             $_POST['area'] =$myrow["area"];
258             $_POST['phone'] =$myrow["phone"];
259             $_POST['fax'] =$myrow["fax"];
260             $_POST['email'] =$myrow["email"];
261             $_POST['tax_group_id'] = $myrow["tax_group_id"];
262             $_POST['disable_trans'] = $myrow['disable_trans'];
263             $_POST['default_location'] = $myrow["default_location"];
264             $_POST['default_ship_via'] = $myrow['default_ship_via'];
265             $_POST['sales_account'] = $myrow["sales_account"];
266             $_POST['sales_discount_account'] = $myrow['sales_discount_account'];
267             $_POST['receivables_account'] = $myrow['receivables_account'];
268             $_POST['payment_discount_account'] = $myrow['payment_discount_account'];
269                 $_POST['group_no']  = $myrow["group_no"];
270         }
271 }
272 elseif ($Mode != 'ADD_ITEM')
273 { //end of if $SelectedBranch only do the else when a new record is being entered
274         if(!$num_branches) {
275                 $sql = "SELECT name, address, email
276                         FROM ".TB_PREF."debtors_master WHERE debtor_no = '" . $_POST['customer_id']. "'";
277                 $result = db_query($sql,"check failed");
278                 $myrow = db_fetch($result);
279                 $_POST['br_name'] = $myrow["name"];
280                 $_POST['contact_name'] = _('Main Branch');
281                 $_POST['br_address'] = $_POST['br_post_address'] = $myrow["address"];
282                 $_POST['email'] = $myrow['email'];
283         }
284         $_POST['branch_code'] = "";
285         if (!isset($_POST['sales_account']) || !isset($_POST['sales_discount_account']))
286         {
287                 $company_record = get_company_prefs();
288
289                 // We use the Item Sales Account as default!
290             // $_POST['sales_account'] = $company_record["default_sales_act"];
291             $_POST['sales_account'] = "";
292             $_POST['sales_discount_account'] = $company_record['default_sales_discount_act'];
293             $_POST['receivables_account'] = $company_record['debtors_act'];
294             $_POST['payment_discount_account'] = $company_record['default_prompt_payment_act'];
295
296         }
297
298 }
299 hidden('selected_id', $selected_id);
300 hidden('branch_code');
301
302 table_section_title(_("Name and Contact"));
303
304 text_row(_("Branch Name:"), 'br_name', null, 35, 40);
305 text_row(_("Contact Person:"), 'contact_name', null, 35, 40);
306
307 text_row(_("Phone Number:"), 'phone', null, 20, 20);
308 text_row(_("Fax Number:"), 'fax', null, 20, 20);
309
310 email_row(_("E-mail:"), 'email', null, 35, 55);
311
312 table_section_title(_("Sales"));
313
314 sales_persons_list_row( _("Sales Person:"), 'salesman', null);
315
316 sales_areas_list_row( _("Sales Area:"), 'area', null);
317
318 sales_groups_list_row(_("Sales Group:"), 'group_no', null, true);
319
320 locations_list_row(_("Default Inventory Location:"), 'default_location', null);
321
322 shippers_list_row(_("Default Shipping Company:"), 'default_ship_via', null);
323
324 tax_groups_list_row(_("Tax Group:"), 'tax_group_id', null);
325
326 yesno_list_row(_("Disable this Branch:"), 'disable_trans', null);
327
328 table_section(2);
329
330 table_section_title(_("GL Accounts"));
331
332 // 2006-06-14. Changed gl_al_accounts_list to have an optional all_option 'Use Item Sales Accounts'
333 gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', null, false, false, true);
334
335 gl_all_accounts_list_row(_("Sales Discount Account:"), 'sales_discount_account');
336
337 gl_all_accounts_list_row(_("Accounts Receivable Account:"), 'receivables_account');
338
339 gl_all_accounts_list_row(_("Prompt Payment Discount Account:"), 'payment_discount_account');
340
341 table_section_title(_("Addresses"));
342
343 textarea_row(_("Mailing Address:"), 'br_post_address', null, 35, 5);
344
345 textarea_row(_("Billing Address:"), 'br_address', null, 35, 5);
346
347 end_outer_table(1);
348
349 submit_add_or_update_center($selected_id == -1, '', 'both');
350
351 end_form();
352
353 end_page();
354
355 ?>