5dfc8635a923b0a2758f0590e79e9e21d060d81b
[fa-stable.git] / manufacturing / includes / db / work_orders_quick_db.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 //--------------------------------------------------------------------------------------
13
14 function add_work_order_quick($wo_ref, $loc_code, $units_reqd, $stock_id, $type, $date_, $memo_, $costs, $cr_acc, $labour, $cr_lab_acc)
15 {
16         global $Refs;
17
18         begin_transaction();
19
20         // if unassembling, reverse the stock movements
21         if ($type == WO_UNASSEMBLY)
22                 $units_reqd = -$units_reqd;
23
24         add_material_cost($stock_id, $units_reqd, $date_);
25
26         $date = date2sql($date_);
27         if (!isset($costs) || ($costs == ""))
28                 $costs = 0;
29         add_overhead_cost($stock_id, $units_reqd, $date_, $costs);
30         if (!isset($labour) || ($labour == ""))
31                 $labour = 0;
32         add_labour_cost($stock_id, $units_reqd, $date_, $labour);
33                 
34         $sql = "INSERT INTO ".TB_PREF."workorders (wo_ref, loc_code, units_reqd, units_issued, stock_id,
35                 type, additional_costs, date_, released_date, required_by, released, closed)
36         VALUES (".db_escape($wo_ref).", ".db_escape($loc_code).", ".db_escape($units_reqd)
37         .", ".db_escape($units_reqd).", ".db_escape($stock_id).",
38                 ".db_escape($type).", ".db_escape($costs).", '$date', '$date', '$date', 1, 1)";
39         db_query($sql, "could not add work order");
40
41         $woid = db_insert_id();
42
43         //--------------------------------------------------------------------------
44
45         // create Work Order Requirements based on the bom
46         $result = get_bom($stock_id);
47
48         while ($bom_item = db_fetch($result))
49         {
50
51                 $unit_quantity = $bom_item["quantity"];
52                 $item_quantity = $bom_item["quantity"] * $units_reqd;
53
54
55                 $sql = "INSERT INTO ".TB_PREF."wo_requirements (workorder_id, stock_id, workcentre, units_req, units_issued, loc_code)
56                         VALUES ($woid, " . "'" . $bom_item["component"] . "'" . ",
57                         '". $bom_item["workcentre_added"] . "',
58                         $unit_quantity, $item_quantity, '" . $bom_item["loc_code"] . "')";
59
60         db_query($sql, "The work order requirements could not be added");
61
62                 // insert a -ve stock move for each item
63                 add_stock_move(ST_WORKORDER, $bom_item["component"], $woid,
64                         $bom_item["loc_code"], $date_, $wo_ref, -$item_quantity, 0);
65         }
66
67
68         // -------------------------------------------------------------------------
69
70         // insert a +ve stock move for the item being manufactured
71         add_stock_move(ST_WORKORDER, $stock_id, $woid,  $loc_code, $date_,
72                 $wo_ref, $units_reqd, 0);
73
74         // -------------------------------------------------------------------------
75
76         work_order_quick_costs($woid, $stock_id, $units_reqd, $date_, 0, $costs, $cr_acc, $labour, $cr_lab_acc);
77
78         // -------------------------------------------------------------------------
79
80         add_comments(ST_WORKORDER, $woid, $date_, $memo_);
81
82         $Refs->save(ST_WORKORDER, $woid, $wo_ref);
83         add_audit_trail(ST_WORKORDER, $woid, $date_,_("Quick production."));
84         commit_transaction();
85         return $woid;
86 }
87
88 //--------------------------------------------------------------------------------------
89
90 function work_order_quick_costs($woid, $stock_id, $units_reqd, $date_, $advanced=0, $costs=0, $cr_acc="", $labour=0, $cr_lab_acc="")
91 {
92         global $wo_cost_types;
93         $result = get_bom($stock_id);
94
95         // credit all the components
96         $total_cost = 0;
97         while ($bom_item = db_fetch($result))
98         {
99
100                 $bom_accounts = get_stock_gl_code($bom_item["component"]);
101
102                 $bom_cost = $bom_item["ComponentCost"] * $units_reqd;
103
104                 if ($advanced)
105                 {
106                         update_wo_requirement_issued($woid, $bom_item['component'], $bom_item["quantity"] * $units_reqd);                       
107                         // insert a -ve stock move for each item
108                         add_stock_move(ST_MANURECEIVE, $bom_item["component"], $advanced,
109                                 $bom_item["loc_code"], $date_, "", -$bom_item["quantity"] * $units_reqd, 0);
110                 }
111                 $total_cost += add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $bom_accounts["inventory_account"], 0, 0,
112                         $bom_item["quantity"] ." * ".$bom_item["description"], -$bom_cost);
113
114         }
115         if ($advanced)
116         {
117                 // also take the additional issues
118                 $res = get_additional_issues($woid);
119                 $wo = get_work_order($woid);
120                 $issue_total = 0;
121                 while ($item = db_fetch($res))
122                 {
123                         $standard_cost = get_standard_cost($item['stock_id']);
124                         $issue_cost = $standard_cost * $item['qty_issued'] * $units_reqd / $wo['units_reqd'];
125                         $issue = get_stock_gl_code($item['stock_id']);
126             $stockitem = get_item($item['stock_id']);
127             $total_cost += add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $issue["inventory_account"], 0, 0,
128                 _("Issue of")." ".$stockitem["description"], -$issue_cost);                     
129                         $issue_total += $issue_cost;
130                 }
131                 if ($issue_total != 0)
132                         add_issue_cost($stock_id, $units_reqd, $date_, $issue_total);
133                 $lcost = get_gl_wo_cost($woid, WO_LABOUR);
134                 add_labour_cost($stock_id, $units_reqd, $date_, $lcost * $units_reqd / $wo['units_reqd']);
135                 $ocost = get_gl_wo_cost($woid, WO_OVERHEAD);
136                 add_overhead_cost($stock_id, $units_reqd, $date_, $ocost * $units_reqd / $wo['units_reqd']);
137         }
138         // credit additional costs
139         $item_accounts = get_stock_gl_code($stock_id);
140         if ($costs != 0.0)
141         {
142                 add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $cr_acc,
143                         0, 0, $wo_cost_types[WO_OVERHEAD], -$costs, PT_WORKORDER, WO_OVERHEAD);
144                 $is_bank_to = is_bank_account($cr_acc);
145         if ($is_bank_to)
146         {
147                 add_bank_trans(ST_WORKORDER, $woid, $is_bank_to, "",
148                         $date_, -$costs, PT_WORKORDER, WO_OVERHEAD, get_company_currency(),
149                         "Cannot insert a destination bank transaction");
150         }
151                         
152                 add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $item_accounts["assembly_account"],
153                         $item_accounts["dimension_id"], $item_accounts["dimension2_id"], $wo_cost_types[WO_OVERHEAD], $costs, 
154                         PT_WORKORDER, WO_OVERHEAD);
155         }
156         if ($labour != 0.0)
157         {
158                 add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $cr_lab_acc,
159                         0, 0, $wo_cost_types[WO_LABOUR], -$labour, PT_WORKORDER, WO_LABOUR);
160                 $is_bank_to = is_bank_account($cr_lab_acc);
161         if ($is_bank_to)
162         {
163                 add_bank_trans(ST_WORKORDER, $woid, $is_bank_to, "",
164                         $date_, -$labour, PT_WORKORDER, WO_LABOUR, get_company_currency(),
165                         "Cannot insert a destination bank transaction");
166         }
167                         
168                 add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $item_accounts["assembly_account"],
169                         $item_accounts["dimension_id"], $item_accounts["dimension2_id"], $wo_cost_types[WO_LABOUR], $labour, 
170                         PT_WORKORDER, WO_LABOUR);
171         }
172         // debit total components $total_cost
173         $stockitem = get_item($stock_id);
174     add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $item_accounts["inventory_account"],
175         0, 0, _("Produced")." ".$units_reqd. " * ".$stockitem["description"], -$total_cost);    
176 }
177
178 //--------------------------------------------------------------------------------------
179
180 ?>