<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — BOM or cost of ready production]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=2081&amp;type=atom" />
	<updated>2011-08-02T05:42:15Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=2081</id>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9864#p9864" />
			<content type="html"><![CDATA[<p>You could ask for some help in the Modules /Add-ons Forum.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-08-02T05:42:15Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9864#p9864</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9863#p9863" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[giesbrecht]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=7875</uri>
			</author>
			<updated>2011-08-02T01:24:26Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9863#p9863</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9853#p9853" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-07-30T22:23:10Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9853#p9853</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9852#p9852" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[giesbrecht]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=7875</uri>
			</author>
			<updated>2011-07-30T21:18:40Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9852#p9852</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9851#p9851" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-07-30T16:06:15Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9851#p9851</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9850#p9850" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[giesbrecht]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=7875</uri>
			</author>
			<updated>2011-07-30T15:31:49Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9850#p9850</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9849#p9849" />
			<content type="html"><![CDATA[<p>Yes, it will require an extension.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-07-30T12:07:51Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9849#p9849</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9847#p9847" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[giesbrecht]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=7875</uri>
			</author>
			<updated>2011-07-30T11:07:16Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9847#p9847</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9820#p9820" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-07-27T06:50:21Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9820#p9820</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9818#p9818" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[giesbrecht]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=7875</uri>
			</author>
			<updated>2011-07-26T22:20:05Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9818#p9818</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9069#p9069" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-05-09T21:00:12Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9069#p9069</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[BOM or cost of ready production]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=9065#p9065" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Eglis]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=1340</uri>
			</author>
			<updated>2011-05-09T16:04:14Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=9065#p9065</id>
		</entry>
</feed>
