Added inactive records support.
[fa-stable.git] / inventory / manage / locations.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 = 11;
13 $path_to_root="../..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_("Inventory Locations"));
17
18 include_once($path_to_root . "/includes/ui.inc");
19
20 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
21
22 simple_page_mode(true);
23
24 if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') 
25 {
26
27         //initialise no input errors assumed initially before we test
28         $input_error = 0;
29
30         /* actions to take once the user has clicked the submit button
31         ie the page has called itself with some user input */
32
33         //first off validate inputs sensible
34         $_POST['loc_code'] = strtoupper($_POST['loc_code']);
35
36         if (strlen($_POST['loc_code']) > 5) 
37         {
38                 $input_error = 1;
39                 display_error( _("The location code must be five characters or less long."));
40                 set_focus('loc_code');
41         } 
42         elseif (strlen($_POST['location_name']) == 0) 
43         {
44                 $input_error = 1;
45                 display_error( _("The location name must be entered."));                
46                 set_focus('location_name');
47         }
48
49         if ($input_error != 1) 
50         {
51         if ($selected_id != -1) 
52         {
53     
54                 update_item_location($selected_id, $_POST['location_name'], $_POST['delivery_address'],
55                         $_POST['phone'], $_POST['fax'], $_POST['email'], $_POST['contact']);    
56                         display_notification(_('Selected location has been updated'));
57         } 
58         else 
59         {
60     
61         /*selected_id is null cos no item selected on first time round so must be adding a      record must be submitting new entries in the new Location form */
62         
63                 add_item_location($_POST['loc_code'], $_POST['location_name'], $_POST['delivery_address'], 
64                         $_POST['phone'], $_POST['fax'], $_POST['email'], $_POST['contact']);
65                         display_notification(_('New location has been added'));
66         }
67                 
68                 $Mode = 'RESET';
69         }
70
71
72 function can_delete($selected_id)
73 {
74         $sql= "SELECT COUNT(*) FROM ".TB_PREF."stock_moves WHERE loc_code='$selected_id'";
75         $result = db_query($sql, "could not query stock moves");
76         $myrow = db_fetch_row($result);
77         if ($myrow[0] > 0) 
78         {
79                 display_error(_("Cannot delete this location because item movements have been created using this location."));
80                 return false;
81         }
82
83         $sql= "SELECT COUNT(*) FROM ".TB_PREF."workorders WHERE loc_code='$selected_id'";
84         $result = db_query($sql, "could not query work orders");
85         $myrow = db_fetch_row($result);
86         if ($myrow[0] > 0) 
87         {
88                 display_error(_("Cannot delete this location because it is used by some work orders records."));
89                 return false;
90         }
91
92         $sql= "SELECT COUNT(*) FROM ".TB_PREF."cust_branch WHERE default_location='$selected_id'";
93         $result = db_query($sql, "could not query customer branches");
94         $myrow = db_fetch_row($result);
95         if ($myrow[0] > 0) 
96         {
97                 display_error(_("Cannot delete this location because it is used by some branch records as the default location to deliver from."));
98                 return false;
99         }
100         
101         return true;
102 }
103
104 //----------------------------------------------------------------------------------
105
106 if ($Mode == 'Delete')
107 {
108
109         if (can_delete($selected_id)) 
110         {
111                 delete_item_location($selected_id);
112                 display_notification(_('Selected location has been deleted'));
113         } //end if Delete Location
114         $Mode = 'RESET';
115 }
116
117 if ($Mode == 'RESET')
118 {
119         $selected_id = -1;
120         $sav = get_post('show_inactive');
121         unset($_POST);
122         $_POST['show_inactive'] = $sav;
123 }
124
125 $sql = "SELECT * FROM ".TB_PREF."locations";
126 if (!check_value('show_inactive')) $sql .= " WHERE !inactive";
127 $result = db_query($sql, "could not query locations");;
128
129 start_form();
130 start_table("$table_style width=30%");
131 $th = array(_("Location Code"), _("Location Name"), _("Address"), _("Phone"), "", "");
132 inactive_control_column($th);
133 table_header($th);
134 $k = 0; //row colour counter
135 while ($myrow = db_fetch($result)) 
136 {
137
138         alt_table_row_color($k);
139         
140         label_cell($myrow["loc_code"]);
141         label_cell($myrow["location_name"]);
142         label_cell($myrow["delivery_address"]);
143         label_cell($myrow["phone"]);
144         inactive_control_cell($myrow["loc_code"], $myrow["inactive"], 'locations', 'loc_code');
145         edit_button_cell("Edit".$myrow["loc_code"], _("Edit"));
146         delete_button_cell("Delete".$myrow["loc_code"], _("Delete"));
147         end_row();
148 }
149         //END WHILE LIST LOOP
150 inactive_control_row($th);
151 end_table();
152
153 echo '<br>';
154
155 start_table($table_style2);
156
157 $_POST['email'] = "";
158 if ($selected_id != -1) 
159 {
160         //editing an existing Location
161
162         if ($Mode == 'Edit') {
163                 $myrow = get_item_location($selected_id);
164
165                 $_POST['loc_code'] = $myrow["loc_code"];
166                 $_POST['location_name']  = $myrow["location_name"];
167                 $_POST['delivery_address'] = $myrow["delivery_address"];
168                 $_POST['contact'] = $myrow["contact"];
169                 $_POST['phone'] = $myrow["phone"];
170                 $_POST['fax'] = $myrow["fax"];
171                 $_POST['email'] = $myrow["email"];
172         }
173         hidden("selected_id", $selected_id);
174         hidden("loc_code");
175         label_row(_("Location Code:"), $_POST['loc_code']);
176
177 else 
178 { //end of if $selected_id only do the else when a new record is being entered
179         text_row(_("Location Code:"), 'loc_code', null, 5, 5);
180 }
181
182 text_row_ex(_("Location Name:"), 'location_name', 50, 50);
183 text_row_ex(_("Contact for deliveries:"), 'contact', 30, 30);
184
185 textarea_row(_("Address:"), 'delivery_address', null, 35, 5);   
186
187 text_row_ex(_("Telephone No:"), 'phone', 30, 30);
188 text_row_ex(_("Facsimile No:"), 'fax', 30, 30);
189 email_row_ex(_("E-mail:"), 'email', 30);
190
191 end_table(1);
192 submit_add_or_update_center($selected_id == -1, '', 'both');
193
194 end_form();
195
196 end_page();
197
198 ?>