Added optional excluding items from sales.
[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                                 check_value('no_sale'));
173                         update_record_status($_POST['NewStockID'], $_POST['inactive'],
174                                 'stock_master', 'stock_id');
175                         update_record_status($_POST['NewStockID'], $_POST['inactive'],
176                                 'item_codes', 'item_code');
177                         set_focus('stock_id');
178                         $Ajax->activate('stock_id'); // in case of status change
179                         display_notification(_("Item has been updated."));
180                 } 
181                 else 
182                 { //it is a NEW part
183
184                         add_item($_POST['NewStockID'], $_POST['description'],
185                                 $_POST['long_description'], $_POST['category_id'], $_POST['tax_type_id'],
186                                 $_POST['units'], $_POST['mb_flag'], $_POST['sales_account'],
187                                 $_POST['inventory_account'], $_POST['cogs_account'],
188                                 $_POST['adjustment_account'], $_POST['assembly_account'], 
189                                 $_POST['dimension_id'], $_POST['dimension2_id'],
190                                 check_value('no_sale'));
191
192                         display_notification(_("A new item has been added."));
193                         $_POST['stock_id'] = $_POST['NewStockID'] = 
194                         $_POST['description'] = $_POST['long_description'] = '';
195                         set_focus('NewStockID');
196                 }
197                 $Ajax->activate('_page_body');
198         }
199 }
200
201 //------------------------------------------------------------------------------------
202
203 function check_usage($stock_id, $dispmsg=true)
204 {
205         $sqls=  array(
206         "SELECT COUNT(*) FROM "
207                 .TB_PREF."stock_moves WHERE stock_id='$stock_id'" =>
208          _('Cannot delete this item because there are stock movements that refer to this item.'),
209         "SELECT COUNT(*) FROM "
210                 .TB_PREF."bom WHERE component='$stock_id'"=>
211          _('Cannot delete this item record because there are bills of material that require this part as a component.'),
212         "SELECT COUNT(*) FROM "
213                 .TB_PREF."sales_order_details WHERE stk_code='$stock_id'" =>
214          _('Cannot delete this item because there are existing purchase order items for it.'),
215         "SELECT COUNT(*) FROM "
216                 .TB_PREF."purch_order_details WHERE item_code='$stock_id'"=>
217          _('Cannot delete this item because there are existing purchase order items for it.')
218         );
219
220         $msg = '';
221
222         foreach($sqls as $sql=>$err) {
223                 $result = db_query($sql, "could not query stock usage");
224                 $myrow = db_fetch_row($result);
225                 if ($myrow[0] > 0) 
226                 {
227                         $msg = $err; break;
228                 }
229         }
230
231         if ($msg == '') {       
232
233                 $kits = get_where_used($stock_id);
234                 $num_kits = db_num_rows($kits);
235                 if ($num_kits) {
236                         $msg = _("This item cannot be deleted because some code aliases 
237                                 or foreign codes was entered for it, or there are kits defined 
238                                 using this item as component")
239                                 .':<br>';
240
241                         while($num_kits--) {
242                                 $kit = db_fetch($kits);
243                                 $msg .= "'".$kit[0]."'";
244                                 if ($num_kits) $msg .= ',';
245                         }
246
247                 }
248         }
249         if ($msg != '') {
250                 if($dispmsg) display_error($msg);
251                 return false;
252         }
253         return true;
254 }
255
256 //------------------------------------------------------------------------------------
257
258 if (isset($_POST['delete']) && strlen($_POST['delete']) > 1) 
259 {
260
261         if (check_usage($_POST['NewStockID'])) {
262
263                 $stock_id = $_POST['NewStockID'];
264                 delete_item($stock_id);
265                 $filename = $comp_path . "/$user_comp/images/".item_img_name($stock_id).".jpg";
266                 if (file_exists($filename))
267                         unlink($filename);
268                 display_notification(_("Selected item has been deleted."));
269                 $_POST['stock_id'] = '';
270                 clear_data();
271                 set_focus('stock_id');
272                 $new_item = true;
273                 $Ajax->activate('_page_body');
274         }
275 }
276 //-------------------------------------------------------------------------------------------- 
277
278 if (isset($_POST['select']))
279 {
280         context_return(array('stock_id' => $_POST['stock_id']));
281 }
282
283
284 //------------------------------------------------------------------------------------
285
286 start_form(true);
287
288 if (db_has_stock_items()) 
289 {
290         start_table("class='tablestyle_noborder'");
291         start_row();
292     stock_items_list_cells(_("Select an item:"), 'stock_id', null,
293           _('New item'), true, check_value('show_inactive'));
294         $new_item = get_post('stock_id')==''; 
295         check_cells(_("Show inactive:"), 'show_inactive', null, true);
296         end_row();
297         end_table();
298
299         if (get_post('_show_inactive_update')) {
300                 $Ajax->activate('stock_id');
301                 set_focus('stock_id');
302         }
303 }
304
305 div_start('details');
306 start_outer_table($table_style2, 5);
307
308 table_section(1);
309
310 table_section_title(_("Item"));
311
312 //------------------------------------------------------------------------------------
313
314 if ($new_item) 
315 {
316         text_row(_("Item Code:"), 'NewStockID', null, 21, 20);
317         $_POST['inactive'] = 0;
318
319 else 
320 { // Must be modifying an existing item
321                 $_POST['NewStockID'] = $_POST['stock_id'];
322
323                 $myrow = get_item($_POST['NewStockID']);
324
325                 $_POST['long_description'] = $myrow["long_description"];
326                 $_POST['description'] = $myrow["description"];
327                 $_POST['category_id']  = $myrow["category_id"];
328                 $_POST['tax_type_id']  = $myrow["tax_type_id"];
329                 $_POST['units']  = $myrow["units"];
330                 $_POST['mb_flag']  = $myrow["mb_flag"];
331
332                 $_POST['sales_account'] =  $myrow['sales_account'];
333                 $_POST['inventory_account'] = $myrow['inventory_account'];
334                 $_POST['cogs_account'] = $myrow['cogs_account'];
335                 $_POST['adjustment_account']    = $myrow['adjustment_account'];
336                 $_POST['assembly_account']      = $myrow['assembly_account'];
337                 $_POST['dimension_id']  = $myrow['dimension_id'];
338                 $_POST['dimension2_id'] = $myrow['dimension2_id'];
339                 $_POST['no_sale']       = $myrow['no_sale'];
340                 $_POST['del_image'] = 0;        
341                 $_POST['inactive'] = $myrow["inactive"];
342                 label_row(_("Item Code:"),$_POST['NewStockID']);
343                 hidden('NewStockID', $_POST['NewStockID']);
344                 set_focus('description');
345 }
346
347 text_row(_("Name:"), 'description', null, 52, 50);
348
349 textarea_row(_('Description:'), 'long_description', null, 42, 3);
350
351 stock_categories_list_row(_("Category:"), 'category_id', null, $new_item);
352
353 if ($new_item && (list_updated('category_id') || !isset($_POST['units']))) {
354
355         $category_record = get_item_category($_POST['category_id']);
356
357         $_POST['tax_type_id'] = $category_record["dflt_tax_type"];
358         $_POST['units'] = $category_record["dflt_units"];
359         $_POST['mb_flag'] = $category_record["dflt_mb_flag"];
360         $_POST['inventory_account'] = $category_record["dflt_inventory_act"];
361         $_POST['cogs_account'] = $category_record["dflt_cogs_act"];
362         $_POST['sales_account'] = $category_record["dflt_sales_act"];
363         $_POST['adjustment_account'] = $category_record["dflt_adjustment_act"];
364         $_POST['assembly_account'] = $category_record["dflt_assembly_act"];
365         $_POST['dimension_id'] = $category_record["dflt_dim1"];
366         $_POST['dimension2_id'] = $category_record["dflt_dim2"];
367         $_POST['no_sale'] = $category_record["dflt_no_sale"];
368 }
369 $fresh_item = !isset($_POST['NewStockID']) || $new_item 
370         || check_usage($_POST['stock_id'],false);
371
372 item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null);
373
374 stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, $fresh_item);
375
376 stock_units_list_row(_('Units of Measure:'), 'units', null, $fresh_item);
377
378 $dim = get_company_pref('use_dimension');
379 if ($dim >= 1)
380 {
381         table_section_title(_("Dimensions"));
382
383         dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1);
384         if ($dim > 1)
385                 dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2);
386 }
387 if ($dim < 1)
388         hidden('dimension_id', 0);
389 if ($dim < 2)
390         hidden('dimension2_id', 0);
391
392 table_section(2);
393
394 table_section_title(_("GL Accounts"));
395
396 gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']);
397
398 gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']);
399
400 if (!is_service($_POST['mb_flag'])) 
401 {
402         gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']);
403         gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']);
404 }
405 else 
406 {
407         hidden('cogs_account', $_POST['cogs_account']);
408         hidden('adjustment_account', $_POST['adjustment_account']);
409 }
410
411
412 if (is_manufactured($_POST['mb_flag']))
413         gl_all_accounts_list_row(_("Item Assembly Costs Account:"), 'assembly_account', $_POST['assembly_account']);
414 else
415         hidden('assembly_account', $_POST['assembly_account']);
416
417 table_section_title(_("Other"));
418
419 // Add image upload for New Item  - by Joe
420 label_row(_("Image File (.jpg)") . ":", "<input type='file' id='pic' name='pic'>");
421 // Add Image upload for New Item  - by Joe
422 $stock_img_link = "";
423 $check_remove_image = false;
424 if (isset($_POST['NewStockID']) && file_exists("$comp_path/$user_comp/images/"
425         .item_img_name($_POST['NewStockID']).".jpg")) 
426 {
427  // 31/08/08 - rand() call is necessary here to avoid caching problems. Thanks to Peter D.
428         $stock_img_link .= "<img id='item_img' alt = '[".$_POST['NewStockID'].".jpg".
429                 "]' src='$comp_path/$user_comp/images/".item_img_name($_POST['NewStockID']).".jpg?nocache=".rand()."'".
430                 " height='$pic_height' border='0'>";
431         $check_remove_image = true;     
432
433 else 
434 {
435         $stock_img_link .= _("No image");
436 }
437
438 label_row("&nbsp;", $stock_img_link);
439 if ($check_remove_image)
440         check_row(_("Delete Image:"), 'del_image', $_POST['del_image']);
441         
442 check_row(_("Exclude from sales:"), 'no_sale', $_POST['no_sale']);
443
444 record_status_list_row(_("Item status:"), 'inactive');
445 end_outer_table(1);
446 div_end();
447 div_start('controls');
448 if (!isset($_POST['NewStockID']) || $new_item) 
449 {
450         submit_center('addupdate', _("Insert New Item"), true, '', 'default');
451
452 else 
453 {
454         submit_center_first('addupdate', _("Update Item"), '', 
455         count($_SESSION['Context']) ? true : 'default');
456         submit_return('select', _("Return"), _("Select this items and return to document entry."), 'default');
457         submit('delete', _("Delete This Item"), true, '', true);
458         submit_center_last('cancel', _("Cancel"), _("Cancel Edition"), 'cancel');
459 }
460
461 div_end();
462 end_form();
463
464 //------------------------------------------------------------------------------------
465
466 end_page();
467 ?>