3d136119e8d218949d6daeaab23250ebe0787f01
[fa-stable.git] / inventory / manage / items.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(_("Items"));
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/includes/ui.inc");
20 include_once($path_to_root . "/includes/data_checks.inc");
21
22 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
23
24 $user_comp = user_company();
25 $new_item = get_post('stock_id')=='' || get_post('cancel'); 
26 //------------------------------------------------------------------------------------
27
28 if (isset($_GET['stock_id']))
29 {
30         $_POST['stock_id'] = $stock_id = $_GET['stock_id'];
31 }
32 elseif (isset($_POST['stock_id']))
33 {
34         $stock_id = $_POST['stock_id'];
35 }
36 if (list_updated('stock_id')) {
37         $_POST['NewStockID'] = get_post('stock_id');
38     clear_data();
39         $Ajax->activate('details');
40         $Ajax->activate('controls');
41 }
42
43 if (get_post('cancel')) {
44         $_POST['NewStockID'] = $_POST['stock_id'] = '';
45     clear_data();
46         set_focus('stock_id');
47         $Ajax->activate('_page_body');
48 }
49
50 if (list_updated('category_id') || list_updated('mb_flag')) {
51         $Ajax->activate('details');
52 }
53 $upload_file = "";
54 if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '') 
55 {
56         $stock_id = $_POST['NewStockID'];
57         $result = $_FILES['pic']['error'];
58         $upload_file = 'Yes'; //Assume all is well to start off with
59         $filename = $comp_path . "/$user_comp/images";
60         if (!file_exists($filename))
61         {
62                 mkdir($filename);
63         }       
64         $filename .= "/".item_img_name($stock_id).".jpg";
65         
66          //But check for the worst 
67         if (strtoupper(substr(trim($_FILES['pic']['name']), strlen($_FILES['pic']['name']) - 3)) != 'JPG')
68         {
69                 display_warning(_('Only jpg files are supported - a file extension of .jpg is expected'));
70                 $upload_file ='No';
71         } 
72         elseif ( $_FILES['pic']['size'] > ($max_image_size * 1024)) 
73         { //File Size Check
74                 display_warning(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $max_image_size);
75                 $upload_file ='No';
76         } 
77         elseif ( $_FILES['pic']['type'] == "text/plain" ) 
78         {  //File type Check
79                 display_warning( _('Only graphics files can be uploaded'));
80                 $upload_file ='No';
81         } 
82         elseif (file_exists($filename))
83         {
84                 $result = unlink($filename);
85                 if (!$result) 
86                 {
87                         display_error(_('The existing image could not be removed'));
88                         $upload_file ='No';
89                 }
90         }
91         
92         if ($upload_file == 'Yes')
93         {
94                 $result  =  move_uploaded_file($_FILES['pic']['tmp_name'], $filename);
95         }
96         $Ajax->activate('details');
97  /* EOF Add Image upload for New Item  - by Ori */
98 }
99
100
101 check_db_has_stock_categories(_("There are no item categories defined in the system. At least one item category is required to add a item."));
102
103 check_db_has_item_tax_types(_("There are no item tax types defined in the system. At least one item tax type is required to add a item."));
104
105 function clear_data()
106 {
107         unset($_POST['long_description']);
108         unset($_POST['description']);
109         unset($_POST['category_id']);
110         unset($_POST['tax_type_id']);
111         unset($_POST['units']);
112         unset($_POST['mb_flag']);
113         unset($_POST['NewStockID']);
114         unset($_POST['dimension_id']);
115         unset($_POST['dimension2_id']);
116 }
117
118 //------------------------------------------------------------------------------------
119
120 if (isset($_POST['addupdate'])) 
121 {
122
123         $input_error = 0;
124         if ($upload_file == 'No')
125                 $input_error = 1;
126         if (strlen($_POST['description']) == 0) 
127         {
128                 $input_error = 1;
129                 display_error( _('The item name must be entered.'));
130                 set_focus('description');
131         } 
132         elseif (strlen($_POST['NewStockID']) == 0) 
133         {
134                 $input_error = 1;
135                 display_error( _('The item code cannot be empty'));
136                 set_focus('NewStockID');
137         }
138         elseif (strstr($_POST['NewStockID'], " ") || strstr($_POST['NewStockID'],"'") || 
139                 strstr($_POST['NewStockID'], "+") || strstr($_POST['NewStockID'], "\"") || 
140                 strstr($_POST['NewStockID'], "&")) 
141         {
142                 $input_error = 1;
143                 display_error( _('The item code cannot contain any of the following characters -  & + OR a space OR quotes'));
144                 set_focus('NewStockID');
145
146         }
147         elseif ($new_item && db_num_rows(get_item_kit($_POST['NewStockID'])))
148         {
149                         $input_error = 1;
150                 display_error( _("This item code is already assigned to stock item or sale kit."));
151                         set_focus('NewStockID');
152         }
153         
154         if ($input_error != 1)
155         {
156                 if (check_value('del_image'))
157                 {
158                         $filename = $comp_path . "/$user_comp/images/".item_img_name($_POST['NewStockID']).".jpg";
159                         if (file_exists($filename))
160                                 unlink($filename);
161                 }
162                 
163                 if (!$new_item) 
164                 { /*so its an existing one */
165                         update_item($_POST['NewStockID'], $_POST['description'],
166                                 $_POST['long_description'], $_POST['category_id'], 
167                                 $_POST['tax_type_id'], get_post('units'),
168                                 get_post('mb_flag'), $_POST['sales_account'],
169                                 $_POST['inventory_account'], $_POST['cogs_account'],
170                                 $_POST['adjustment_account'], $_POST['assembly_account'], 
171                                 $_POST['dimension_id'], $_POST['dimension2_id']);
172                         update_record_status($_POST['NewStockID'], $_POST['inactive'],
173                                 'stock_master', 'stock_id');
174                         update_record_status($_POST['NewStockID'], $_POST['inactive'],
175                                 'item_codes', 'item_code');
176                         set_focus('stock_id');
177                         $Ajax->activate('stock_id'); // in case of status change
178                         display_notification(_("Item has been updated."));
179                 } 
180                 else 
181                 { //it is a NEW part
182
183                         add_item($_POST['NewStockID'], $_POST['description'],
184                                 $_POST['long_description'], $_POST['category_id'], $_POST['tax_type_id'],
185                                 $_POST['units'], $_POST['mb_flag'], $_POST['sales_account'],
186                                 $_POST['inventory_account'], $_POST['cogs_account'],
187                                 $_POST['adjustment_account'], $_POST['assembly_account'], 
188                                 $_POST['dimension_id'], $_POST['dimension2_id']);
189
190                         display_notification(_("A new item has been added."));
191                         $_POST['stock_id'] = $_POST['NewStockID'] = 
192                         $_POST['description'] = $_POST['long_description'] = '';
193                         set_focus('NewStockID');
194                 }
195                 $Ajax->activate('_page_body');
196         }
197 }
198
199 //------------------------------------------------------------------------------------
200
201 function check_usage($stock_id, $dispmsg=true)
202 {
203         $sqls=  array(
204         "SELECT COUNT(*) FROM "
205                 .TB_PREF."stock_moves WHERE stock_id='$stock_id'" =>
206          _('Cannot delete this item because there are stock movements that refer to this item.'),
207         "SELECT COUNT(*) FROM "
208                 .TB_PREF."bom WHERE component='$stock_id'"=>
209          _('Cannot delete this item record because there are bills of material that require this part as a component.'),
210         "SELECT COUNT(*) FROM "
211                 .TB_PREF."sales_order_details WHERE stk_code='$stock_id'" =>
212          _('Cannot delete this item because there are existing purchase order items for it.'),
213         "SELECT COUNT(*) FROM "
214                 .TB_PREF."purch_order_details WHERE item_code='$stock_id'"=>
215          _('Cannot delete this item because there are existing purchase order items for it.')
216         );
217
218         $msg = '';
219
220         foreach($sqls as $sql=>$err) {
221                 $result = db_query($sql, "could not query stock usage");
222                 $myrow = db_fetch_row($result);
223                 if ($myrow[0] > 0) 
224                 {
225                         $msg = $err; break;
226                 }
227         }
228
229         if ($msg == '') {       
230
231                 $kits = get_where_used($stock_id);
232                 $num_kits = db_num_rows($kits);
233                 if ($num_kits) {
234                         $msg = _("This item cannot be deleted because some code aliases 
235                                 or foreign codes was entered for it, or there are kits defined 
236                                 using this item as component")
237                                 .':<br>';
238
239                         while($num_kits--) {
240                                 $kit = db_fetch($kits);
241                                 $msg .= "'".$kit[0]."'";
242                                 if ($num_kits) $msg .= ',';
243                         }
244
245                 }
246         }
247         if ($msg != '') {
248                 if($dispmsg) display_error($msg);
249                 return false;
250         }
251         return true;
252 }
253
254 //------------------------------------------------------------------------------------
255
256 if (isset($_POST['delete']) && strlen($_POST['delete']) > 1) 
257 {
258
259         if (check_usage($_POST['NewStockID'])) {
260
261                 $stock_id = $_POST['NewStockID'];
262                 delete_item($stock_id);
263                 $filename = $comp_path . "/$user_comp/images/".item_img_name($stock_id).".jpg";
264                 if (file_exists($filename))
265                         unlink($filename);
266                 display_notification(_("Selected item has been deleted."));
267                 $_POST['stock_id'] = '';
268                 clear_data();
269                 set_focus('stock_id');
270                 $new_item = true;
271                 $Ajax->activate('_page_body');
272         }
273 }
274 //-------------------------------------------------------------------------------------------- 
275
276 if (isset($_POST['select']))
277 {
278         context_return(array('stock_id' => $_POST['stock_id']));
279 }
280
281
282 //------------------------------------------------------------------------------------
283
284 start_form(true);
285
286 if (db_has_stock_items()) 
287 {
288         start_table("class='tablestyle_noborder'");
289         start_row();
290     stock_items_list_cells(_("Select an item:"), 'stock_id', null,
291           _('New item'), true, check_value('show_inactive'));
292         $new_item = get_post('stock_id')==''; 
293         check_cells(_("Show inactive:"), 'show_inactive', null, true);
294         end_row();
295         end_table();
296
297         if (get_post('_show_inactive_update')) {
298                 $Ajax->activate('stock_id');
299                 set_focus('stock_id');
300         }
301 }
302
303 div_start('details');
304 start_outer_table($table_style2, 5);
305
306 table_section(1);
307
308 table_section_title(_("Item"));
309
310 //------------------------------------------------------------------------------------
311
312 if ($new_item) 
313 {
314         text_row(_("Item Code:"), 'NewStockID', null, 21, 20);
315         $_POST['inactive'] = 0;
316
317 else 
318 { // Must be modifying an existing item
319                 $_POST['NewStockID'] = $_POST['stock_id'];
320
321                 $myrow = get_item($_POST['NewStockID']);
322
323                 $_POST['long_description'] = $myrow["long_description"];
324                 $_POST['description'] = $myrow["description"];
325                 $_POST['category_id']  = $myrow["category_id"];
326                 $_POST['tax_type_id']  = $myrow["tax_type_id"];
327                 $_POST['units']  = $myrow["units"];
328                 $_POST['mb_flag']  = $myrow["mb_flag"];
329
330                 $_POST['sales_account'] =  $myrow['sales_account'];
331                 $_POST['inventory_account'] = $myrow['inventory_account'];
332                 $_POST['cogs_account'] = $myrow['cogs_account'];
333                 $_POST['adjustment_account']    = $myrow['adjustment_account'];
334                 $_POST['assembly_account']      = $myrow['assembly_account'];
335                 $_POST['dimension_id']  = $myrow['dimension_id'];
336                 $_POST['dimension2_id'] = $myrow['dimension2_id'];
337                 $_POST['del_image'] = 0;        
338                 $_POST['inactive'] = $myrow["inactive"];
339                 label_row(_("Item Code:"),$_POST['NewStockID']);
340                 hidden('NewStockID', $_POST['NewStockID']);
341                 set_focus('description');
342 }
343
344 text_row(_("Name:"), 'description', null, 52, 50);
345
346 textarea_row(_('Description:'), 'long_description', null, 42, 3);
347
348 stock_categories_list_row(_("Category:"), 'category_id', null, $new_item);
349
350 if ($new_item && (list_updated('category_id') || !isset($_POST['units']))) {
351
352         $category_record = get_item_category($_POST['category_id']);
353
354         $_POST['tax_type_id'] = $category_record["dflt_tax_type"];
355         $_POST['units'] = $category_record["dflt_units"];
356         $_POST['mb_flag'] = $category_record["dflt_mb_flag"];
357         $_POST['inventory_account'] = $category_record["dflt_inventory_act"];
358         $_POST['cogs_account'] = $category_record["dflt_cogs_act"];
359         $_POST['sales_account'] = $category_record["dflt_sales_act"];
360         $_POST['adjustment_account'] = $category_record["dflt_adjustment_act"];
361         $_POST['assembly_account'] = $category_record["dflt_assembly_act"];
362         $_POST['dimension_id'] = $category_record["dflt_dim1"];
363         $_POST['dimension2_id'] = $category_record["dflt_dim2"];
364 }
365 $fresh_item = !isset($_POST['NewStockID']) || $new_item 
366         || check_usage($_POST['stock_id'],false);
367
368 item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null);
369
370 stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, $fresh_item);
371
372 stock_units_list_row(_('Units of Measure:'), 'units', null, $fresh_item);
373
374 $dim = get_company_pref('use_dimension');
375 if ($dim >= 1)
376 {
377         table_section_title(_("Dimensions"));
378
379         dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1);
380         if ($dim > 1)
381                 dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2);
382 }
383 if ($dim < 1)
384         hidden('dimension_id', 0);
385 if ($dim < 2)
386         hidden('dimension2_id', 0);
387
388 table_section(2);
389
390 table_section_title(_("GL Accounts"));
391
392 gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']);
393
394 gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']);
395
396 if (!is_service($_POST['mb_flag'])) 
397 {
398         gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']);
399         gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']);
400 }
401 else 
402 {
403         hidden('cogs_account', $_POST['cogs_account']);
404         hidden('adjustment_account', $_POST['adjustment_account']);
405 }
406
407
408 if (is_manufactured($_POST['mb_flag']))
409         gl_all_accounts_list_row(_("Item Assembly Costs Account:"), 'assembly_account', $_POST['assembly_account']);
410 else
411         hidden('assembly_account', $_POST['assembly_account']);
412
413 table_section_title(_("Picture"));
414
415 // Add image upload for New Item  - by Joe
416 label_row(_("Image File (.jpg)") . ":", "<input type='file' id='pic' name='pic'>");
417 // Add Image upload for New Item  - by Joe
418 $stock_img_link = "";
419 $check_remove_image = false;
420 if (isset($_POST['NewStockID']) && file_exists("$comp_path/$user_comp/images/"
421         .item_img_name($_POST['NewStockID']).".jpg")) 
422 {
423  // 31/08/08 - rand() call is necessary here to avoid caching problems. Thanks to Peter D.
424         $stock_img_link .= "<img id='item_img' alt = '[".$_POST['NewStockID'].".jpg".
425                 "]' src='$comp_path/$user_comp/images/".item_img_name($_POST['NewStockID']).".jpg?nocache=".rand()."'".
426                 " height='$pic_height' border='0'>";
427         $check_remove_image = true;     
428
429 else 
430 {
431         $stock_img_link .= _("No image");
432 }
433
434 label_row("&nbsp;", $stock_img_link);
435 if ($check_remove_image)
436         check_row(_("Delete Image:"), 'del_image', $_POST['del_image']);
437         
438 record_status_list_row(_("Item status:"), 'inactive');
439 end_outer_table(1);
440 div_end();
441 div_start('controls');
442 if (!isset($_POST['NewStockID']) || $new_item) 
443 {
444         submit_center('addupdate', _("Insert New Item"), true, '', 'default');
445
446 else 
447 {
448         submit_center_first('addupdate', _("Update Item"), '', 
449         count($_SESSION['Context']) ? true : 'default');
450         submit_return('select', _("Return"), _("Select this items and return to document entry."), 'default');
451         submit('delete', _("Delete This Item"), true, '', true);
452         submit_center_last('cancel', _("Cancel"), _("Cancel Edition"), 'cancel');
453 }
454
455 div_end();
456 end_form();
457
458 //------------------------------------------------------------------------------------
459
460 end_page();
461 ?>