Topic: New inventory related custom field

We are in desperate need of a custom field created for our inventory items.  We need a "location" field since we maintain over 5000 inventory items in our warehouse. 

Something simple like a 8 character text field.

Is this doable?

Thanks in advance!

Robby
robby.otts@gmail.com

Re: New inventory related custom field

You can have as many locations per item as you want. Did I miss something?

/Joe

/Joe

Re: New inventory related custom field

My apologies for not being more clear.

We actually need a field that shows the specific location of the item within the warehouse.  For example,

4D4C1

4th aisle, shelf D, 4th location on shelf, bin number


From what I know the current "location" field is simply a "1", "2", "3", etc.......

Re: New inventory related custom field

Could Foreign Item codes help you?

It is located in Items and Inventory tab, Foreign Item Codes.

Joe

Re: New inventory related custom field

Such information in FA 2.3.x can be stored as part of the stock_master.long_description field and used as in the Wiki Article on Bin Locations.

In FA 2.4, a separate field in the stock_master table to provide for BinLocation would be useful.

6 (edited by apmuthu 08/27/2015 10:12:59 am)

Re: New inventory related custom field

@joe: How would we go about using the Foreign Item Code as a Bin Location? Must we somehow manually edit the item_codes table to make such foreign code entries have their is_foreign field as 0 instead of the default 1? It would also have to set it's Quantity field to 1 and possibly prevent it from inundating the sales invoice item drop down boxes as duplicates of their parent items.

Here is a sample set of transactions sql results on the training database:

-- Items and Inventory => Items => Add New Item
-- On Adding Item001
INSERT INTO `1_item_codes` VALUES 
('6', 'Item001', 'Item001', 'Test Item 001', '1', '1', '0', '0');
INSERT INTO `1_loc_stock` VALUES 
('DEF', 'Item001', '0');
INSERT INTO `1_stock_master` VALUES 
('Item001', '1', '1', 'Test Item 001', '', 'each', 'B', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');

-- Items and Inventory => Foreign Item Codes => Add New Foreign Item
-- On Adding 2 Foreign Item Codes for newly added item
INSERT INTO `1_item_codes` VALUES
('7', '2154658', 'Item001', 'Foreign Item Code of Test Item 001', '1', '45', '1', '0'),
('8', '32568', 'Item001', 'Foreign Item Code for Next Test Item 001', '4', '14', '1', '0');

-- Items and Inventory => Sales Pricing => Add New Sales Price
-- Added Sales Prices
INSERT INTO `1_prices` VALUES
('5', 'Item001', '1', 'USD', '3'),
('6', 'Item001', '2', 'USD', '2.5');

Attached is the screenshot of a direct invoice entry in progress.

Adding foreign codes form has a Category field for the item - must we allow such a field to introduce ambiguity with that in the parent Item? This will make for the same stock_id having different category_id in the item_codes table!

Post's attachments

FA_Invoicing_FICodes.png 30.2 kb, 1 downloads since 2015-08-27 

You don't have the permssions to download the attachments of this post.