<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — BOM or cost of ready production]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=2081</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=2081&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in BOM or cost of ready production.]]></description>
		<lastBuildDate>Tue, 02 Aug 2011 05:42:15 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9864#p9864</link>
			<description><![CDATA[<p>You could ask for some help in the Modules /Add-ons Forum.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Tue, 02 Aug 2011 05:42:15 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9864#p9864</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9863#p9863</link>
			<description><![CDATA[<p>what would be the best form to share my advances with this extension? i have done some modifications within a copy of manufacturing app, called process manufacturing and hooked from in modules folder. i would like to share my ideas so maybe someone can contribute.</p><p>adrian</p>]]></description>
			<author><![CDATA[null@example.com (giesbrecht)]]></author>
			<pubDate>Tue, 02 Aug 2011 01:24:26 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9863#p9863</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9853#p9853</link>
			<description><![CDATA[<p>This is done just before these lines by calling the function work_order_quick_costs. This function begins on line 116 in file /manufacturing/includes/db/work_orders_quick_db.inc.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sat, 30 Jul 2011 22:23:10 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9853#p9853</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9852#p9852</link>
			<description><![CDATA[<p>Joe,</p><p>i&nbsp; mixed the cuestions up a little, what i am looking for is where stock_move for the components occurs. at some point the individual components wich are part of the BOM are taken out of the the inventory.</p><p>thx for your replies</p><p>adrian</p>]]></description>
			<author><![CDATA[null@example.com (giesbrecht)]]></author>
			<pubDate>Sat, 30 Jul 2011 21:18:40 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9852#p9852</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9851#p9851</link>
			<description><![CDATA[<p>In function work_order_produce the bom costs are gathered in line&nbsp; 55.<br /></p><div class="codebox"><pre><code>    $m_cost = 0;
                   $result = get_bom($details[&quot;stock_id&quot;]);

    while ($bom_item = db_fetch($result))
    {
        $standard_cost = get_standard_cost($bom_item[&#039;component&#039;]);
        $m_cost += ($bom_item[&#039;quantity&#039;] * $standard_cost);
    }    

    // insert a +ve stock move for the item being manufactured
    // negative means &quot;unproduce&quot; or unassemble
    add_stock_move(ST_MANURECEIVE, $details[&quot;stock_id&quot;], $id,
        $details[&quot;loc_code&quot;], $date_, $ref, $quantity, $m_cost);
    // update wo quantity and close wo if requested
    work_order_update_finished_quantity($woid, $quantity, $close_wo);</code></pre></div><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sat, 30 Jul 2011 16:06:15 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9851#p9851</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9850#p9850</link>
			<description><![CDATA[<p>Joe,</p><p>i am looking for the code where the following event (as in FAwiki) occur:</p><p>- A stock move is created for the BOM item of type Work Order Production (minus). Was earlier of type Work Order.</p><p>I can only find where the finished item stock move occurs:</p><p>In work_orders_produce_items_db.inc: &nbsp; &nbsp; add_stock_move(ST_MANURECEIVE, $details[&quot;stock_id&quot;], $id,<br />&nbsp; &nbsp; &nbsp; &nbsp; $details[&quot;loc_code&quot;], $date_, $ref, $quantity, $m_cost);</p><p>Would you be so kind and indicate to me where the BOM stock moves occurs?</p><p>thanks</p><p>adrian</p>]]></description>
			<author><![CDATA[null@example.com (giesbrecht)]]></author>
			<pubDate>Sat, 30 Jul 2011 15:31:49 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9850#p9850</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9849#p9849</link>
			<description><![CDATA[<p>Yes, it will require an extension.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sat, 30 Jul 2011 12:07:51 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9849#p9849</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9847#p9847</link>
			<description><![CDATA[<p>Ok, after a revision of the requirements i have thought of creating an extension using the Manufacturing app, but making the necesary changes to work for Process Manufacturing. I guess an extension is allowed to make database changes, is that right?</p>]]></description>
			<author><![CDATA[null@example.com (giesbrecht)]]></author>
			<pubDate>Sat, 30 Jul 2011 11:07:16 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9847#p9847</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9820#p9820</link>
			<description><![CDATA[<p>I am not sure I can contribute with anything here. Maybe somone in the audience can. Let us hope.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Wed, 27 Jul 2011 06:50:21 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9820#p9820</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9818#p9818</link>
			<description><![CDATA[<p>Joe,</p><p>i would like to help develop something like proposed by Eglis. Specially in process manufacturing (chemical, cosmetic, pharma, etc.) this is a very must have feature. I am talking about the yield and the real discount on inventory. i would propose something like individual post production BOM. do you think this is possible? could you give me some hints on this one?</p><p>thanks,</p><p>adrian</p>]]></description>
			<author><![CDATA[null@example.com (giesbrecht)]]></author>
			<pubDate>Tue, 26 Jul 2011 22:20:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9818#p9818</guid>
		</item>
		<item>
			<title><![CDATA[Re: BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9069#p9069</link>
			<description><![CDATA[<p>1. Yes you can. But the effect will first take place after change. There are no backward regulations. Former productions are as they were.</p><p>2. Again the change of BOM items will change the avg. cost for future productions.</p><p>3. If you are having trouble with something, there is always a last call to manuel Journal Entry.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 09 May 2011 21:00:12 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9069#p9069</guid>
		</item>
		<item>
			<title><![CDATA[BOM or cost of ready production]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=9065#p9065</link>
			<description><![CDATA[<p>hi joe</p><p>I have a question related the cost of ready production,<br />before to write the question I am explaining you the situation</p><p>when I have create the BOM in FA for the Ferro chrome (ready production Fe-Cr) I have put the consumption of raw materials as follows:</p><p>1. chrome ore 2.7 ton (per 1 ton of Fe-Cr)<br />2. metallurgical coke 0.05 ton (per 1 ton of Fe-Cr)<br />3. etc</p><p>I have follow all the steps in FA about the production of 100 ton of Fe-Cr (ready production) and I saw that the consumption of raw material was decreased based on this technological card, but, the consumption given in BOM is how to say a provision of raw materials consumption and not the fact.</p><p>the fact will be when we have finished the inventory, let`s say</p><p>after the measurement of:<br />1. chrome ore stock we can say that the consumption for production of 1 ton Fe-Cr (ready production) is not 2.7 ton but 2.8 or 2.5</p><p>Question:</p><p>1. CAN I DO CHANGES IN BOM ABOUT THE ITEM WHICH ARE PRODUCED?</p><p>2. IF YES, WILL BE REFLECTED THIS CHANGES IN GL EVEN THAT THE ITEM PRODUCTION IS PRODUCED AND MAY BE IS SOLD?</p><p>3. IF NO, HOW CAN I HANDLE THIS SITUATION ABOUT THE COST OF READY PRODUCTION IN GL?</p><br /><p>many thanks, eglis</p>]]></description>
			<author><![CDATA[null@example.com (Eglis)]]></author>
			<pubDate>Mon, 09 May 2011 16:04:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=9065#p9065</guid>
		</item>
	</channel>
</rss>
