<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — How to set inventory physical location (bin or shelf)]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=4908&amp;type=atom" />
	<updated>2018-01-23T18:19:40Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=4908</id>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30604#p30604" />
			<content type="html"><![CDATA[<p>All data elements go into the appropriate db field in MySQL.<br />The doctext.inc file should have it&#039;s path created before being copied over and edited as needed in the web folder.</p><p>If you need professional assistance post your offer in the <a href="https://frontaccounting.com/punbb/viewforum.php?id=16">Job Offers board</a>.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2018-01-23T18:19:40Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30604#p30604</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30599#p30599" />
			<content type="html"><![CDATA[<p>Thank you for the reply.</p><p>I am having difficulty understanding the below, do I do this in MySQL or in FA?<br /></p><div class="quotebox"><blockquote><p>Insert the relevant data for printing Packing List</p><p>&nbsp; &nbsp; In the 0_cust_branch.notes field, place your space separated and say a CID# prefixed value (amongst others) of any substitute branch code only if that may need to supercede the branch_code in FrontAccounting to be used for lookup in any external application like: </p><p>Frt#2300 CID#35263 Introduced by So and So Owner#Brian</p><p>&nbsp; &nbsp; In the 0_stock_master.long_description field, place your space separated and say a BinLoc# prefixed Bin Location value (amongst others) like: </p><p>BinLoc#R12T3B4L6 Clr#Grey</p><p>&nbsp; &nbsp; The above may well indicate that the stock_id is physically located in a warehouse with a loc_code (Location ID) and in Bin Location at Row 12 - Tray 3 - Bay 4 - Left Side, Item 6 with Color Grey&#039;.</p></blockquote></div><p>Also do I create the directory &#039;/includes&#039; under reporting or should it already be there<br /></p><div class="quotebox"><blockquote><p>Make a copy of the reporting/includes/doctext.inc into company/0/reporting/includes/doctext.inc</p></blockquote></div><p>Regards</p>]]></content>
			<author>
				<name><![CDATA[alanmi]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=42117</uri>
			</author>
			<updated>2018-01-23T14:03:31Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30599#p30599</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30549#p30549" />
			<content type="html"><![CDATA[<p>In general the <a href="https://frontaccounting.com/fawiki/index.php?n=Help.BinLocationsInPackingList">wiki article</a> referred to in my post still applies but needs to be modified to suit FA 2.4.3. It was considered to be a workaround as the DB schema was frozen in FA 2.3.x then and hence we needed it to accommodate several data elements in the single description field and then parse them out when needed.</p><p>Line 22 in the <a href="https://github.com/FrontAccountingERP/FA/blob/master/sales/includes/db/cust_trans_details_db.inc#L22">same file in FA 2.4.3</a>:<br /></p><div class="codebox"><pre><code>        item.units, item.mb_flag</code></pre></div><p>should now be changed to:<br /></p><div class="codebox"><pre><code>        item.units, item.mb_flag, item.long_description</code></pre></div><p>to use the workaround.</p><p>In FA 2.4.3, it was sought to be made native but the devs had not found enough time and sponsors to get it done and it possibly remains as an extension in some private repos only. The correct way to implement this would be to create a separate extension that would use a new table in a 1:1 relationship with the existing <strong>stock_master</strong> table used.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2018-01-19T03:22:47Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30549#p30549</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30547#p30547" />
			<content type="html"><![CDATA[<p>Does this workaround still apply to FA 2.4.3</p><p>For instance the changes in the wiki for:<br />&nbsp; &nbsp; Extend line 22 in the function get_customer_trans_details() in the file sales/includes/db/cust_trans_details_db.inc from: </p><p><span style="color: #FF0000">&nbsp; &nbsp; &nbsp; &nbsp; &quot;.TB_PREF.&quot;stock_master.units, &quot;.TB_PREF.&quot;stock_master.mb_flag</span></p><p><span style="color: #FF0000">to</span></p><p><span style="color: #FF0000">&nbsp; &nbsp; &nbsp; &nbsp; &quot;.TB_PREF.&quot;stock_master.units, &quot;.TB_PREF.&quot;stock_master.mb_flag, &quot;.TB_PREF.&quot;stock_master.long_description <br /></span><br /> do not match the cust_trans_details_db.inc in FA 2.4.3 which are<br /><span style="color: #FF0000">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .TB_PREF.&quot;debtor_trans_details line,&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong><span class="bbu">.TB_PREF.&quot;stock_master item</span></strong><br />&nbsp; &nbsp; &nbsp; &nbsp; WHERE (&quot;;<br /></span></p><p>So far we like FA, but bin locations are important. Also when receiving the purchased items can a bin be allocated or will it allways be fixed.</p><p>Regards<br />Alan</p>]]></content>
			<author>
				<name><![CDATA[alanmi]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=42117</uri>
			</author>
			<updated>2018-01-18T17:57:12Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30547#p30547</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23540#p23540" />
			<content type="html"><![CDATA[<p>Check the wiki for a <a href="https://frontaccounting.com/fawiki/index.php?n=Help.BinLocationsInPackingList">workaround</a> - it show up in the appropriate reports as well.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-05-16T15:00:09Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23540#p23540</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23536#p23536" />
			<content type="html"><![CDATA[<p>I know the description field allows for input of long descriptions etc but I would like to see a simple inventory location field called BIN or something like that to shows the actual physical location of inventory items within a warehouse.</p>]]></content>
			<author>
				<name><![CDATA[010hnoor]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20415</uri>
			</author>
			<updated>2015-05-15T07:15:04Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23536#p23536</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=21590#p21590" />
			<content type="html"><![CDATA[<p>Bin Location can be made as part of the Item Name but it will be subject to changes and will get reflected in the invoice. Even if it is part of the long_description field in the stock_master, it may possibly appear in some reports.<br />If the item_code field in the item_codes table is not used for UPC/EAN, then it can be used for Bin Location. This can be part of the foreign code naming then.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2014-11-28T15:35:29Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=21590#p21590</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[How to set inventory physical location (bin or shelf)]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19763#p19763" />
			<content type="html"><![CDATA[<p>I&#039;m new to FA and wondering if anyone can share best practice on how to set up bin / shelf location for inventory items?&nbsp; I know the description field allows for input of long descriptions etc but I would like to see a simple inventory location field called BIN or something like that to shows the actual physical location of inventory items within a warehouse.&nbsp; Does that exist in FA or&nbsp; is it possible?&nbsp; Is there an extension available that does this?</p>]]></content>
			<author>
				<name><![CDATA[rickmill98]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19274</uri>
			</author>
			<updated>2014-04-22T17:07:23Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19763#p19763</id>
		</entry>
</feed>
