Overhead and labour cost changed to define standard costs.
[fa-stable.git] / manufacturing / includes / db / work_orders_quick_db.inc
diff --git a/manufacturing/includes/db/work_orders_quick_db.inc b/manufacturing/includes/db/work_orders_quick_db.inc
deleted file mode 100644 (file)
index 14570f1..0000000
+++ /dev/null
@@ -1,162 +0,0 @@
-<?php
-/**********************************************************************
-    Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU General Public License, GPL, 
-       as published by the Free Software Foundation, either version 3 
-       of the License, or (at your option) any later version.
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
-***********************************************************************/
-/*
-       Quick work order entry, $type is either WO_ASSEMBLY, or WO_UNASSEMBLY
-       All changes in material and manufactured item stock are made during work order entry.
-*/
-function add_work_order_quick($wo_ref, $loc_code, $units_reqd, $stock_id, $type, 
-       $date_, $memo_, $costs, $cr_acc, $labour, $cr_lab_acc)
-{
-       global $Refs;
-
-       begin_transaction();
-       $args = func_get_args();
-       $args = (object)array_combine(array('wo_ref', 'loc_code', 'units_reqd', 'stock_id',
-               'type', 'date_', 'memo_', 'costs', 'cr_acc', 'labour', 'cr_lab_acc'), $args);
-       $args->woid = 0;
-       hook_db_prewrite($args, ST_WORKORDER);
-
-       // if unassembling, reverse the stock movements
-       if ($type == WO_UNASSEMBLY)
-               $units_reqd = -$units_reqd;
-
-       add_material_cost($stock_id, $units_reqd, $date_);
-
-       $date = date2sql($date_);
-       if (!isset($costs) || ($costs == ""))
-               $costs = 0;
-       add_overhead_cost($stock_id, $units_reqd, $date_, $costs);
-       if (!isset($labour) || ($labour == ""))
-               $labour = 0;
-       add_labour_cost($stock_id, $units_reqd, $date_, $labour);
-
-       $sql = "INSERT INTO ".TB_PREF."workorders (wo_ref, loc_code, units_reqd, units_issued, stock_id,
-               type, additional_costs, date_, released_date, required_by, released, closed)
-       VALUES (".db_escape($wo_ref).", ".db_escape($loc_code).", ".db_escape($units_reqd)
-       .", ".db_escape($units_reqd).", ".db_escape($stock_id).",
-               ".db_escape($type).", ".db_escape($costs).", '$date', '$date', '$date', 1, 1)";
-       db_query($sql, "could not add work order");
-
-       $woid = db_insert_id();
-
-       //--------------------------------------------------------------------------
-
-       // create Work Order Requirements based on the bom
-       $result = get_bom($stock_id);
-
-       while ($bom_item = db_fetch($result))
-       {
-
-               $unit_quantity = $bom_item["quantity"];
-               $item_quantity = $bom_item["quantity"] * $units_reqd;
-
-
-               $sql = "INSERT INTO ".TB_PREF."wo_requirements (workorder_id, stock_id, workcentre, units_req, units_issued, loc_code)
-                       VALUES ($woid, " . "'" . $bom_item["component"] . "'" . ",
-                       '". $bom_item["workcentre_added"] . "',
-                       $unit_quantity, $item_quantity, '" . $bom_item["loc_code"] . "')";
-
-        db_query($sql, "The work order requirements could not be added");
-
-               // insert a -ve stock move for each item
-               $UnitCost = get_standard_cost($bom_item["component"]);
-               add_stock_move(ST_WORKORDER, $bom_item["component"], $woid,
-                       $bom_item["loc_code"], $date_, $wo_ref, -$item_quantity, $UnitCost, $UnitCost);
-       }
-
-       // -------------------------------------------------------------------------
-       //Negative Stock Handling
-       $qoh = get_qoh_on_date($stock_id);
-       $cost_adjust = false;
-       if ($qoh < 0)
-       {
-               if ($qoh + $units_reqd >= 0)
-                       $cost_adjust = true;
-       }
-
-       //Negative Stock Handling First; Prior to add_stock_move
-       if ($cost_adjust)
-               adjust_deliveries($stock_id, get_standard_cost($stock_id), $date_);
-
-       // -------------------------------------------------------------------------
-
-       // insert a +ve stock move for the item being manufactured
-       add_stock_move(ST_WORKORDER, $stock_id, $woid,  $loc_code, $date_,
-               $wo_ref, $units_reqd, 0);
-
-       // -------------------------------------------------------------------------
-
-       work_order_quick_costs($woid, $stock_id, $units_reqd, $date_, $costs, $cr_acc, $labour, $cr_lab_acc);
-
-       // -------------------------------------------------------------------------
-
-       add_comments(ST_WORKORDER, $woid, $date_, $memo_);
-
-       $Refs->save(ST_WORKORDER, $woid, $wo_ref);
-       add_audit_trail(ST_WORKORDER, $woid, $date_,_("Quick production."));
-
-       $args->woid = $woid;
-       hook_db_postwrite($args, ST_WORKORDER);
-
-       commit_transaction();
-       return $woid;
-}
-
-//--------------------------------------------------------------------------------------
-
-function work_order_quick_costs($woid, $stock_id, $units_reqd, $date_, $costs, $cr_acc, $labour, $cr_lab_acc)
-{
-       $result = get_bom($stock_id);
-
-       // credit all the components
-       $total_cost = 0;
-       while ($bom_item = db_fetch($result))
-       {
-
-               $bom_accounts = get_stock_gl_code($bom_item["component"]);
-
-               $bom_cost = $bom_item["ComponentCost"] * $units_reqd; // ??  * $bom_item["quantity"]
-
-               $memo = $bom_item["quantity"] ." * ".$bom_item["description"];
-
-               if (!is_service($bom_accounts["mb_flag"]))
-                       $ivaccount = $bom_accounts["inventory_account"];
-               else
-                       $ivaccount = $bom_accounts["assembly_account"];
-               $total_cost += add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $ivaccount, 0, 0,
-                       $memo, -$bom_cost);
-       }
-
-       $stockitem = get_item($stock_id);
-       // credit additional costs
-       if ($costs != 0.0)
-       {
-               add_wo_costs_journal($woid, $costs, WO_OVERHEAD, $cr_acc, $stockitem["assembly_account"],
-                       $date_, $stockitem["dimension_id"], $stockitem["dimension2_id"]);
-       }
-
-       if ($labour != 0.0)
-       {
-               add_wo_costs_journal($woid, $labour, WO_LABOUR, $cr_lab_acc, $stockitem["assembly_account"],
-                       $date_, $stockitem["dimension_id"], $stockitem["dimension2_id"]);
-       }
-
-       // debit total components $total_cost
-       $memo = _("Produced")." ".$units_reqd. " * ".$stockitem["description"];
-
-    add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $stockitem["inventory_account"],
-        0, 0, $memo, -$total_cost);
-
-       $UnitWOCost = ($total_cost + $costs + $labour)/$units_reqd;
-       update_stock_move(ST_WORKORDER, $woid, $stock_id, $UnitWOCost); 
-}
-