Item Tax Types moved to Setup module
[fa-stable.git] / manufacturing / includes / db / work_order_produce_items_db.inc
index 4419e7e23b2f702a7b9c7a804953d7ee63a90932..6676549cafa82f62717bc17b686a7848ed6fe3df 100644 (file)
@@ -37,23 +37,23 @@ 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_);
 
-       references::save_last($ref, 29);
+       references::save(29, $id, $ref);
        add_audit_trail(29, $id, $date_, _("Production."));
 
        commit_transaction();