Cleanup comments. Small bugfixes. Third run
[fa-stable.git] / manufacturing / includes / db / work_order_produce_items_db.inc
index e935d57dcab70ac5bcbf6103b9b5fbad39fadab5..111feb4ca29ea0121b6690d766c3913e96b5a331 100644 (file)
@@ -50,7 +50,7 @@ function work_order_produce($woid, $ref, $quantity, $date_, $memo_, $close_wo)
        work_order_quick_costs($woid, $details["stock_id"], $quantity, $date_, $id);
        // -------------------------------------------------------------------------
 
-       // Chaitanya: stamp BOM cost to finished item
+       // Stamp BOM cost to finished item
        $m_cost = 0;
     $result = get_bom($details["stock_id"]);
        while ($bom_item = db_fetch($result))
@@ -119,7 +119,7 @@ function void_work_order_produce($type_no)
        begin_transaction();
        hook_db_prevoid(ST_MANURECEIVE, $type_no);
 
-       //Chaitanya : Skip processing already voided entry i.e. explicitly voided
+       // Skip processing already voided entry i.e. explicitly voided
        $void_entry = get_voided_entry(ST_MANURECEIVE, $type_no);
        if ($void_entry)
                return; 
@@ -129,13 +129,8 @@ function void_work_order_produce($type_no)
        // deduct the quantity of this production from the parent work order
        work_order_update_finished_quantity($row["workorder_id"], -$row["quantity"]);
 
-       //Chaitanya : skipped this step as BOM may have got changed
-       //work_order_quick_costs($row['workorder_id'], $row['stock_id'], -$row['quantity'], sql2date($row['date_']), $type_no);
-
        // void any related gl trans
-       //Chaitanya : Nothing happens due to next statement as all gl postings are done against WO
-       //void_gl_trans(ST_MANURECEIVE, $type_no, true);
-       
+
        $woid = $row["workorder_id"];
        $date_ = sql2date($row["date_"]);
                
@@ -146,7 +141,7 @@ function void_work_order_produce($type_no)
                $issue = get_stock_gl_code($myrow["stock_id"]);
         $stockitem = get_item($myrow["stock_id"]);
 
-               //Chaitanya : Compatibility for Service Items
+               // Compatibility for Service Items
                if (!is_service($issue["mb_flag"]))
                        $ivaccount = $issue["inventory_account"];
                else
@@ -163,7 +158,7 @@ function void_work_order_produce($type_no)
        $sql = "UPDATE ".TB_PREF."wo_manufacture SET quantity=0 WHERE id=".db_escape($type_no);
        db_query($sql, "Cannot void a wo production");
 
-       //Chaitanya : Shifted below
+       // Shifted below
        // void all related stock moves
        void_stock_move(ST_MANURECEIVE, $type_no);