Fix for too many parameters in submit_return.
[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 = 'SA_ITEM';
13 $path_to_root = "../..";
14 include($path_to_root . "/includes/session.inc");
15
16 $js = "";
17 if ($SysPrefs->use_popup_windows)
18         $js .= get_js_open_window(900, 500);
19 if (user_use_date_picker())
20         $js .= get_js_date_picker();
21
22 if (isset($_GET['FixedAsset'])) {
23   $page_security = 'SA_ASSET';
24   $_SESSION['page_title'] = _($help_context = "Fixed Assets");
25   $_POST['mb_flag'] = 'F';
26   $_POST['fixed_asset']  = 1;
27 }
28 else {
29   $_SESSION['page_title'] = _($help_context = "Items");
30         if (!get_post('fixed_asset'))
31                 $_POST['fixed_asset']  = 0;
32 }
33
34
35 page($_SESSION['page_title'], false, false, "", $js);
36
37 include_once($path_to_root . "/includes/date_functions.inc");
38 include_once($path_to_root . "/includes/ui.inc");
39 include_once($path_to_root . "/includes/data_checks.inc");
40
41 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
42 include_once($path_to_root . "/fixed_assets/includes/fixed_assets_db.inc");
43
44 $user_comp = user_company();
45 $new_item = get_post('stock_id')=='' || get_post('cancel') || get_post('clone'); 
46 //------------------------------------------------------------------------------------
47
48 if (isset($_GET['stock_id']))
49 {
50         $_POST['stock_id'] = $_GET['stock_id'];
51 }
52 $stock_id = get_post('stock_id');
53 if (list_updated('stock_id')) {
54         $_POST['NewStockID'] = $stock_id = get_post('stock_id');
55     clear_data();
56         $Ajax->activate('details');
57         $Ajax->activate('controls');
58 }
59
60 if (get_post('cancel')) {
61         $_POST['NewStockID'] = $stock_id = $_POST['stock_id'] = '';
62     clear_data();
63         set_focus('stock_id');
64         $Ajax->activate('_page_body');
65 }
66 if (list_updated('category_id') || list_updated('mb_flag') || list_updated('fa_class_id') || list_updated('depreciation_method')) {
67         $Ajax->activate('details');
68 }
69 $upload_file = "";
70 if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '') 
71 {
72         $stock_id = $_POST['NewStockID'];
73         $result = $_FILES['pic']['error'];
74         $upload_file = 'Yes'; //Assume all is well to start off with
75         $filename = company_path().'/images';
76         if (!file_exists($filename))
77         {
78                 mkdir($filename);
79         }       
80         $filename .= "/".item_img_name($stock_id).".jpg";
81
82   if ($_FILES['pic']['error'] == UPLOAD_ERR_INI_SIZE) {
83     display_error(_('The file size is over the maximum allowed.'));
84                 $upload_file ='No';
85   }
86   elseif ($_FILES['pic']['error'] > 0) {
87                 display_error(_('Error uploading file.'));
88                 $upload_file ='No';
89   }
90         
91         //But check for the worst 
92         if ((list($width, $height, $type, $attr) = getimagesize($_FILES['pic']['tmp_name'])) !== false)
93                 $imagetype = $type;
94         else
95                 $imagetype = false;
96
97         if ($imagetype != IMAGETYPE_GIF && $imagetype != IMAGETYPE_JPEG && $imagetype != IMAGETYPE_PNG)
98         {       //File type Check
99                 display_warning( _('Only graphics files can be uploaded'));
100                 $upload_file ='No';
101         }
102         elseif (!in_array(strtoupper(substr(trim($_FILES['pic']['name']), strlen($_FILES['pic']['name']) - 3)), array('JPG','PNG','GIF')))
103         {
104                 display_warning(_('Only graphics files are supported - a file extension of .jpg, .png or .gif is expected'));
105                 $upload_file ='No';
106         } 
107         elseif ( $_FILES['pic']['size'] > ($SysPrefs->max_image_size * 1024)) 
108         { //File Size Check
109                 display_warning(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $SysPrefs->max_image_size);
110                 $upload_file ='No';
111         } 
112         elseif ( $_FILES['pic']['type'] == "text/plain" ) 
113         {  //File type Check
114                 display_warning( _('Only graphics files can be uploaded'));
115         $upload_file ='No';
116         } 
117         elseif (file_exists($filename))
118         {
119                 $result = unlink($filename);
120                 if (!$result) 
121                 {
122                         display_error(_('The existing image could not be removed'));
123                         $upload_file ='No';
124                 }
125         }
126         
127         if ($upload_file == 'Yes')
128         {
129                 $result  =  move_uploaded_file($_FILES['pic']['tmp_name'], $filename);
130         }
131         $Ajax->activate('details');
132  /* EOF Add Image upload for New Item  - by Ori */
133 }
134
135 if (get_post('fixed_asset')) {
136         check_db_has_fixed_asset_categories(_("There are no fixed asset categories defined in the system. At least one fixed asset category is required to add a fixed asset."));
137         check_db_has_fixed_asset_classes(_("There are no fixed asset classes defined in the system. At least one fixed asset class is required to add a fixed asset."));
138 } else
139         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."));
140
141 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."));
142
143 function clear_data()
144 {
145         unset($_POST['long_description']);
146         unset($_POST['description']);
147         unset($_POST['category_id']);
148         unset($_POST['tax_type_id']);
149         unset($_POST['units']);
150         unset($_POST['mb_flag']);
151         unset($_POST['NewStockID']);
152         unset($_POST['dimension_id']);
153         unset($_POST['dimension2_id']);
154         unset($_POST['no_sale']);
155         unset($_POST['no_purchase']);
156         unset($_POST['depreciation_method']);
157         unset($_POST['depreciation_rate']);
158         unset($_POST['depreciation_factor']);
159         unset($_POST['depreciation_start']);
160 }
161
162 //------------------------------------------------------------------------------------
163
164 if (isset($_POST['addupdate'])) 
165 {
166
167         $input_error = 0;
168         if ($upload_file == 'No')
169                 $input_error = 1;
170         if (strlen($_POST['description']) == 0) 
171         {
172                 $input_error = 1;
173                 display_error( _('The item name must be entered.'));
174                 set_focus('description');
175         } 
176         elseif (strlen($_POST['NewStockID']) == 0) 
177         {
178                 $input_error = 1;
179                 display_error( _('The item code cannot be empty'));
180                 set_focus('NewStockID');
181         }
182         elseif (strstr($_POST['NewStockID'], " ") || strstr($_POST['NewStockID'],"'") || 
183                 strstr($_POST['NewStockID'], "+") || strstr($_POST['NewStockID'], "\"") || 
184                 strstr($_POST['NewStockID'], "&") || strstr($_POST['NewStockID'], "\t")) 
185         {
186                 $input_error = 1;
187                 display_error( _('The item code cannot contain any of the following characters -  & + OR a space OR quotes'));
188                 set_focus('NewStockID');
189
190         }
191         elseif ($new_item && db_num_rows(get_item_kit($_POST['NewStockID'])))
192         {
193                         $input_error = 1;
194                 display_error( _("This item code is already assigned to stock item or sale kit."));
195                         set_focus('NewStockID');
196         }
197         
198   if (get_post('fixed_asset')) {
199     if ($_POST['depreciation_rate'] > 100) {
200       $_POST['depreciation_rate'] = 100;
201     }
202     elseif ($_POST['depreciation_rate'] < 0) {
203       $_POST['depreciation_rate'] = 0;
204     }
205     $move_row = get_fixed_asset_move($_POST['NewStockID'], ST_SUPPRECEIVE);
206     if (isset($_POST['depreciation_start']) && strtotime($_POST['depreciation_start']) < strtotime($move_row['tran_date'])) {
207       display_warning(_('The depracation cannot start before the fixed asset purchase date'));
208     }
209   }
210         
211         if ($input_error != 1)
212         {
213                 if (check_value('del_image'))
214                 {
215                         $filename = company_path().'/images/'.item_img_name($_POST['NewStockID']).".jpg";
216                         if (file_exists($filename))
217                                 unlink($filename);
218                 }
219                 
220                 if (!$new_item) 
221                 { /*so its an existing one */
222                         update_item($_POST['NewStockID'], $_POST['description'],
223                                 $_POST['long_description'], $_POST['category_id'], 
224                                 $_POST['tax_type_id'], get_post('units'),
225                                 get_post('fixed_asset') ? 'F' : get_post('mb_flag'), $_POST['sales_account'],
226                                 $_POST['inventory_account'], $_POST['cogs_account'],
227                                 $_POST['adjustment_account'], $_POST['wip_account'], 
228                                 $_POST['dimension_id'], $_POST['dimension2_id'],
229                                 check_value('no_sale'), check_value('editable'), check_value('no_purchase'),
230                                 get_post('depreciation_method'), input_num('depreciation_rate'), input_num('depreciation_factor'), get_post('depreciation_start'),
231                                 get_post('fa_class_id'));
232
233                         update_record_status($_POST['NewStockID'], $_POST['inactive'],
234                                 'stock_master', 'stock_id');
235                         update_record_status($_POST['NewStockID'], $_POST['inactive'],
236                                 'item_codes', 'item_code');
237                         set_focus('stock_id');
238                         $Ajax->activate('stock_id'); // in case of status change
239                         display_notification(_("Item has been updated."));
240                 } 
241                 else 
242                 { //it is a NEW part
243
244                         add_item($_POST['NewStockID'], $_POST['description'],
245                                 $_POST['long_description'], $_POST['category_id'], $_POST['tax_type_id'],
246                                 $_POST['units'], get_post('fixed_asset') ? 'F' : get_post('mb_flag'), $_POST['sales_account'],
247                                 $_POST['inventory_account'], $_POST['cogs_account'],
248                                 $_POST['adjustment_account'], $_POST['wip_account'], 
249                                 $_POST['dimension_id'], $_POST['dimension2_id'],
250                                 check_value('no_sale'), check_value('editable'), check_value('no_purchase'),
251                                 get_post('depreciation_method'), input_num('depreciation_rate'), input_num('depreciation_factor'), get_post('depreciation_start'),
252                                 get_post('fa_class_id'));
253
254                         display_notification(_("A new item has been added."));
255                         $_POST['stock_id'] = $_POST['NewStockID'] = 
256                         $_POST['description'] = $_POST['long_description'] = '';
257                         $_POST['no_sale'] = $_POST['editable'] = $_POST['no_purchase'] =0;
258                         set_focus('NewStockID');
259                 }
260                 $Ajax->activate('_page_body');
261         }
262 }
263
264 if (get_post('clone')) {
265         unset($_POST['stock_id']);
266         $stock_id = '';
267         unset($_POST['inactive']);
268         set_focus('NewStockID');
269         $Ajax->activate('_page_body');
270 }
271
272 //------------------------------------------------------------------------------------
273
274 function check_usage($stock_id, $dispmsg=true)
275 {
276         $msg = item_in_foreign_codes($stock_id);
277
278         if ($msg != '') {
279                 if($dispmsg) display_error($msg);
280                 return false;
281         }
282         return true;
283 }
284
285 //------------------------------------------------------------------------------------
286
287 if (isset($_POST['delete']) && strlen($_POST['delete']) > 1) 
288 {
289
290         if (check_usage($_POST['NewStockID'])) {
291
292                 $stock_id = $_POST['NewStockID'];
293                 delete_item($stock_id);
294                 $filename = company_path().'/images/'.item_img_name($stock_id).".jpg";
295                 if (file_exists($filename))
296                         unlink($filename);
297                 display_notification(_("Selected item has been deleted."));
298                 $_POST['stock_id'] = '';
299                 clear_data();
300                 set_focus('stock_id');
301                 $new_item = true;
302                 $Ajax->activate('_page_body');
303         }
304 }
305
306 function item_settings(&$stock_id, $new_item) 
307 {
308         global $SysPrefs, $path_to_root, $page_nested, $depreciation_methods;
309
310         start_outer_table(TABLESTYLE2);
311
312         table_section(1);
313
314         table_section_title(_("General Settings"));
315
316         //------------------------------------------------------------------------------------
317         if ($new_item) 
318         {
319                 text_row(_("Item Code:"), 'NewStockID', null, 21, 20);
320
321                 $_POST['inactive'] = 0;
322         } 
323         else 
324         { // Must be modifying an existing item
325                 if (get_post('NewStockID') != get_post('stock_id') || get_post('addupdate')) { // first item display
326
327                         $_POST['NewStockID'] = $_POST['stock_id'];
328
329                         $myrow = get_item($_POST['NewStockID']);
330
331                         $_POST['long_description'] = $myrow["long_description"];
332                         $_POST['description'] = $myrow["description"];
333                         $_POST['category_id']  = $myrow["category_id"];
334                         $_POST['tax_type_id']  = $myrow["tax_type_id"];
335                         $_POST['units']  = $myrow["units"];
336                         $_POST['mb_flag']  = $myrow["mb_flag"];
337
338                         $_POST['depreciation_method'] = $myrow['depreciation_method'];
339                         $_POST['depreciation_rate'] = number_format2($myrow['depreciation_rate'], 1);
340                         $_POST['depreciation_factor'] = number_format2($myrow['depreciation_factor'], 1);
341                         $_POST['depreciation_start'] = sql2date($myrow['depreciation_start']);
342                         $_POST['depreciation_date'] = sql2date($myrow['depreciation_date']);
343                         $_POST['fa_class_id'] = $myrow['fa_class_id'];
344                         $_POST['material_cost'] = $myrow['material_cost'];
345                         $_POST['purchase_cost'] = $myrow['purchase_cost'];
346                         
347                         $_POST['sales_account'] =  $myrow['sales_account'];
348                         $_POST['inventory_account'] = $myrow['inventory_account'];
349                         $_POST['cogs_account'] = $myrow['cogs_account'];
350                         $_POST['adjustment_account']    = $myrow['adjustment_account'];
351                         $_POST['wip_account']   = $myrow['wip_account'];
352                         $_POST['dimension_id']  = $myrow['dimension_id'];
353                         $_POST['dimension2_id'] = $myrow['dimension2_id'];
354                         $_POST['no_sale']       = $myrow['no_sale'];
355                         $_POST['no_purchase']   = $myrow['no_purchase'];
356                         $_POST['del_image'] = 0;
357                         $_POST['inactive'] = $myrow["inactive"];
358                         $_POST['editable'] = $myrow["editable"];
359                 }
360                 label_row(_("Item Code:"),$_POST['NewStockID']);
361                 hidden('NewStockID', $_POST['NewStockID']);
362                 set_focus('description');
363         }
364         $fixed_asset = get_post('fixed_asset');
365
366         text_row(_("Name:"), 'description', null, 52, 200);
367
368         textarea_row(_('Description:'), 'long_description', null, 42, 3);
369
370         stock_categories_list_row(_("Category:"), 'category_id', null, false, $new_item, $fixed_asset);
371
372         if ($new_item && (list_updated('category_id') || !isset($_POST['units']))) {
373
374                 $category_record = get_item_category($_POST['category_id']);
375
376                 $_POST['tax_type_id'] = $category_record["dflt_tax_type"];
377                 $_POST['units'] = $category_record["dflt_units"];
378                 $_POST['mb_flag'] = $category_record["dflt_mb_flag"];
379                 $_POST['inventory_account'] = $category_record["dflt_inventory_act"];
380                 $_POST['cogs_account'] = $category_record["dflt_cogs_act"];
381                 $_POST['sales_account'] = $category_record["dflt_sales_act"];
382                 $_POST['adjustment_account'] = $category_record["dflt_adjustment_act"];
383                 $_POST['wip_account'] = $category_record["dflt_wip_act"];
384                 $_POST['dimension_id'] = $category_record["dflt_dim1"];
385                 $_POST['dimension2_id'] = $category_record["dflt_dim2"];
386                 $_POST['no_sale'] = $category_record["dflt_no_sale"];
387                 $_POST['no_purchase'] = $category_record["dflt_no_purchase"];
388                 $_POST['editable'] = 0;
389
390         }
391         $fresh_item = !isset($_POST['NewStockID']) || $new_item 
392                 || check_usage($_POST['stock_id'],false);
393
394         item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null);
395
396         if (!get_post('fixed_asset'))
397                 stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, $fresh_item);
398
399         stock_units_list_row(_('Units of Measure:'), 'units', null, $fresh_item);
400
401         check_row(_("Editable description:"), 'editable');
402
403         if (get_post('fixed_asset'))
404                 hidden('no_sale', 0);
405         else
406                 check_row(_("Exclude from sales:"), 'no_sale');
407
408         check_row(_("Exclude from purchases:"), 'no_purchase');
409
410         if (get_post('fixed_asset')) {
411                 table_section_title(_("Depreciation"));
412
413                 fixed_asset_classes_list_row(_("Fixed Asset Class").':', 'fa_class_id', null, false, true);
414
415                 array_selector_row(_("Depreciation Method").":", "depreciation_method", null, $depreciation_methods, array('select_submit'=> true));
416
417                 if (!isset($_POST['depreciation_rate']) || (list_updated('fa_class_id') || list_updated('depreciation_method'))) {
418                         $class_row = get_fixed_asset_class($_POST['fa_class_id']);
419                         $_POST['depreciation_rate'] = get_post('depreciation_method') == 'N' ? ceil(100/$class_row['depreciation_rate'])
420                                 : $class_row['depreciation_rate'];
421                 }
422
423                 if ($_POST['depreciation_method'] == 'O')
424                 {
425                         hidden('depreciation_rate', 100);
426                         label_row(_("Depreciation Rate").':', "100 %");
427                 }
428                 elseif ($_POST['depreciation_method'] == 'N')
429                 {
430                         small_amount_row(_("Depreciation Years").':', 'depreciation_rate', null, null, _('years'), 0);
431                 }
432                 elseif ($_POST['depreciation_method'] == 'D')
433                         small_amount_row(_("Base Rate").':', 'depreciation_rate', null, null, '%', user_percent_dec());
434                 else
435                         small_amount_row(_("Depreciation Rate").':', 'depreciation_rate', null, null, '%', user_percent_dec());
436
437                 if ($_POST['depreciation_method'] == 'D')
438                         small_amount_row(_("Rate multiplier").':', 'depreciation_factor', null, null, '', 2);
439
440                 // do not allow to change the depreciation start after this item has been depreciated
441                 if ($new_item || $_POST['depreciation_start'] == $_POST['depreciation_date'])
442                         date_row(_("Depreciation Start").':', 'depreciation_start', null, null, 1 - date('j'));
443                 else {
444                         hidden('depreciation_start');
445                         label_row(_("Depreciation Start").':', $_POST['depreciation_start']);
446                         label_row(_("Last Depreciation").':', $_POST['depreciation_date']==$_POST['depreciation_start'] ? _("None") :  $_POST['depreciation_date']);
447                 }
448                 hidden('depreciation_date');
449         }
450         table_section(2);
451
452         $dim = get_company_pref('use_dimension');
453         if ($dim >= 1)
454         {
455                 table_section_title(_("Dimensions"));
456
457                 dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1);
458                 if ($dim > 1)
459                         dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2);
460         }
461         if ($dim < 1)
462                 hidden('dimension_id', 0);
463         if ($dim < 2)
464                 hidden('dimension2_id', 0);
465
466         table_section_title(_("GL Accounts"));
467
468         gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']);
469
470         if (get_post('fixed_asset')) {
471                 gl_all_accounts_list_row(_("Asset account:"), 'inventory_account', $_POST['inventory_account']);
472                 gl_all_accounts_list_row(_("Depreciation cost account:"), 'cogs_account', $_POST['cogs_account']);
473                 gl_all_accounts_list_row(_("Depreciation/Disposal account:"), 'adjustment_account', $_POST['adjustment_account']);
474         }
475         elseif (!is_service($_POST['mb_flag'])) 
476         {
477                 gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']);
478                 gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']);
479                 gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']);
480         }
481         else 
482         {
483                 gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']);
484                 hidden('inventory_account', $_POST['inventory_account']);
485                 hidden('adjustment_account', $_POST['adjustment_account']);
486         }
487
488
489         if (is_manufactured($_POST['mb_flag']))
490                 gl_all_accounts_list_row(_("WIP Account:"), 'wip_account', $_POST['wip_account']);
491         else
492                 hidden('wip_account', $_POST['wip_account']);
493
494         table_section_title(_("Other"));
495
496         // Add image upload for New Item  - by Joe
497         file_row(_("Image File (.jpg)") . ":", 'pic', 'pic');
498         // Add Image upload for New Item  - by Joe
499         $stock_img_link = "";
500         $check_remove_image = false;
501         if (isset($_POST['NewStockID']) && file_exists(company_path().'/images/'
502                 .item_img_name($_POST['NewStockID']).".jpg")) 
503         {
504          // 31/08/08 - rand() call is necessary here to avoid caching problems.
505                 $stock_img_link .= "<img id='item_img' alt = '[".$_POST['NewStockID'].".jpg".
506                         "]' src='".company_path().'/images/'.item_img_name($_POST['NewStockID']).
507                         ".jpg?nocache=".rand()."'"." height='".$SysPrefs->pic_height."' border='0'>";
508                 $check_remove_image = true;
509         } 
510         else 
511         {
512                 $stock_img_link .= _("No image");
513         }
514
515         label_row("&nbsp;", $stock_img_link);
516         if ($check_remove_image)
517                 check_row(_("Delete Image:"), 'del_image');
518
519         record_status_list_row(_("Item status:"), 'inactive');
520         if (get_post('fixed_asset')) {
521                 table_section_title(_("Values"));
522                 if (!$new_item) {
523                         hidden('material_cost');
524                         hidden('purchase_cost');
525                         label_row(_("Initial Value").":", price_format($_POST['purchase_cost']), "", "align='right'");
526                         label_row(_("Depreciations").":", price_format($_POST['purchase_cost'] - $_POST['material_cost']), "", "align='right'");
527                         label_row(_("Current Value").':', price_format($_POST['material_cost']), "", "align='right'");
528                 }
529         }
530         end_outer_table(1);
531
532         div_start('controls');
533         if (!isset($_POST['NewStockID']) || $new_item) 
534         {
535                 submit_center('addupdate', _("Insert New Item"), true, '', 'default');
536         } 
537         else 
538         {
539                 if (@$_REQUEST['popup']) hidden('popup', 1);
540                 submit_center_first('addupdate', _("Update Item"), '', 
541                         $page_nested ? true : 'default');
542                 submit_return('select', get_post('stock_id'), 
543                         _("Select this items and return to document entry."));
544                 submit('clone', _("Clone This Item"), true, '', true);
545                 submit('delete', _("Delete This Item"), true, '', true);
546                 submit_center_last('cancel', _("Cancel"), _("Cancel Edition"), 'cancel');
547         }
548
549         div_end();
550 }
551
552 //-------------------------------------------------------------------------------------------- 
553
554 start_form(true);
555
556 if (db_has_stock_items()) 
557 {
558         start_table(TABLESTYLE_NOBORDER);
559         start_row();
560     stock_items_list_cells(_("Select an item:"), 'stock_id', null,
561           _('New item'), true, check_value('show_inactive'), false, array('fixed_asset' => get_post('fixed_asset')));
562         $new_item = get_post('stock_id')=='';
563         check_cells(_("Show inactive:"), 'show_inactive', null, true);
564         end_row();
565         end_table();
566
567         if (get_post('_show_inactive_update')) {
568                 $Ajax->activate('stock_id');
569                 set_focus('stock_id');
570         }
571 }
572 else
573 {
574         hidden('stock_id', get_post('stock_id'));
575 }
576
577 div_start('details');
578
579 $stock_id = get_post('stock_id');
580 if (!$stock_id)
581         unset($_POST['_tabs_sel']); // force settings tab for new customer
582
583 $tabs = (get_post('fixed_asset'))
584         ? array(
585                 'settings' => array(_('&General settings'), $stock_id),
586                 'movement' => array(_('&Transactions'), $stock_id) )
587         : array(
588                 'settings' => array(_('&General settings'), $stock_id),
589                 'sales_pricing' => array(_('S&ales Pricing'), (user_check_access('SA_SALESPRICE') ? $stock_id : null)),
590                 'purchase_pricing' => array(_('&Purchasing Pricing'), (user_check_access('SA_PURCHASEPRICING') ? $stock_id : null)),
591                 'standard_cost' => array(_('Standard &Costs'), (user_check_access('SA_STANDARDCOST') ? $stock_id : null)),
592                 'reorder_level' => array(_('&Reorder Levels'), (is_inventory_item($stock_id) && 
593                         user_check_access('SA_REORDER') ? $stock_id : null)),
594                 'movement' => array(_('&Transactions'), (user_check_access('SA_ITEMSTRANSVIEW') ? $stock_id : null)),
595                 'status' => array(_('&Status'), (user_check_access('SA_ITEMSSTATVIEW') ? $stock_id : null)),
596         );
597
598 tabbed_content_start('tabs', $tabs);
599
600         switch (get_post('_tabs_sel')) {
601                 default:
602                 case 'settings':
603                         item_settings($stock_id, $new_item); 
604                         break;
605                 case 'sales_pricing':
606                         $_GET['stock_id'] = $stock_id;
607                         $_GET['page_level'] = 1;
608                         include_once($path_to_root."/inventory/prices.php");
609                         break;
610                 case 'purchase_pricing':
611                         $_GET['stock_id'] = $stock_id;
612                         $_GET['page_level'] = 1;
613                         include_once($path_to_root."/inventory/purchasing_data.php");
614                         break;
615                 case 'standard_cost':
616                         $_GET['stock_id'] = $stock_id;
617                         $_GET['page_level'] = 1;
618                         include_once($path_to_root."/inventory/cost_update.php");
619                         break;
620                 case 'reorder_level':
621                         if (!is_inventory_item($stock_id))
622                         {
623                                 break;
624                         }       
625                         $_GET['page_level'] = 1;
626                         $_GET['stock_id'] = $stock_id;
627                         include_once($path_to_root."/inventory/reorder_level.php");
628                         break;
629                 case 'movement':
630                         $_GET['stock_id'] = $stock_id;
631                         include_once($path_to_root."/inventory/inquiry/stock_movements.php");
632                         break;
633                 case 'status':
634                         $_GET['stock_id'] = $stock_id;
635                         include_once($path_to_root."/inventory/inquiry/stock_status.php");
636                         break;
637         };
638
639 br();
640 tabbed_content_end();
641
642 div_end();
643
644 hidden('fixed_asset', get_post('fixed_asset'));
645
646 if (get_post('fixed_asset'))
647         hidden('mb_flag', 'F');
648
649 end_form();
650
651 //------------------------------------------------------------------------------------
652
653 end_page();