Merged changes from main branch up to 2.1.3.
[fa-stable.git] / manufacturing / includes / db / work_order_produce_items_db.inc
index b4cac9fd37699fb5ef5ceecd0948e5973fb3d153..6676549cafa82f62717bc17b686a7848ed6fe3df 100644 (file)
@@ -37,19 +37,19 @@ function work_order_produce($woid, $ref, $quantity, $date_, $memo_, $close_wo)
 
        $id = db_insert_id();
 
+       // -------------------------------------------------------------------------
+
+       work_order_quick_costs($woid, $details["stock_id"], $quantity, $date_, true);
+
+       // -------------------------------------------------------------------------
        // insert a +ve stock move for the item being manufactured
        // negative means "unproduce" or unassemble
        add_stock_move(29, $details["stock_id"], $id,
                $details["loc_code"], $date_, $memo_, $quantity, 0);
-
        // update wo quantity and close wo if requested
        work_order_update_finished_quantity($woid, $quantity, $close_wo);
 
-       // -------------------------------------------------------------------------
-
-       work_order_quick_costs($woid, $details["stock_id"], $quantity, $date_, 0, true);
 
-       // -------------------------------------------------------------------------
        if ($memo_)
                add_comments(29, $id, $date_, $memo_);