Update from usntable branch.
[fa-stable.git] / manufacturing / includes / db / work_order_produce_items_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 function work_order_produce($woid, $ref, $quantity, $date_, $memo_, $close_wo)
13 {
14         global $Refs;
15
16         begin_transaction();
17
18         $details = get_work_order($woid);
19
20     if (strlen($details[0]) == 0)
21     {
22         echo _("The order number sent is not valid.");
23         exit;
24     }
25
26         if (work_order_is_closed($woid))
27         {
28                 display_error("UNEXPECTED : Producing Items for a closed Work Order");
29                 cancel_transaction();
30                 exit;
31         }
32
33     $date = date2sql($date_);
34
35     $sql = "INSERT INTO ".TB_PREF."wo_manufacture (workorder_id, reference, quantity, date_)
36                 VALUES (".db_escape($woid).", ".db_escape($ref).", ".db_escape($quantity)
37                 .", '$date')";
38
39         db_query($sql,"A work order manufacture could not be added");
40
41         $id = db_insert_id();
42
43         // -------------------------------------------------------------------------
44
45         work_order_quick_costs($woid, $details["stock_id"], $quantity, $date_, true);
46
47         // -------------------------------------------------------------------------
48         // insert a +ve stock move for the item being manufactured
49         // negative means "unproduce" or unassemble
50         add_stock_move(ST_MANURECEIVE, $details["stock_id"], $id,
51                 $details["loc_code"], $date_, $memo_, $quantity, 0);
52         // update wo quantity and close wo if requested
53         work_order_update_finished_quantity($woid, $quantity, $close_wo);
54
55
56         if ($memo_)
57                 add_comments(ST_MANURECEIVE, $id, $date_, $memo_);
58
59         $Refs->save(ST_MANURECEIVE, $id, $ref);
60         add_audit_trail(ST_MANURECEIVE, $id, $date_, _("Production."));
61
62         commit_transaction();
63 }
64
65 //--------------------------------------------------------------------------------------------
66
67 function get_work_order_produce($id)
68 {
69         $sql = "SELECT ".TB_PREF."wo_manufacture.*,".TB_PREF."workorders.stock_id, "
70                 .TB_PREF."stock_master.description AS StockDescription
71                 FROM ".TB_PREF."wo_manufacture, ".TB_PREF."workorders, ".TB_PREF."stock_master
72                 WHERE ".TB_PREF."wo_manufacture.workorder_id=".TB_PREF."workorders.id
73                 AND ".TB_PREF."stock_master.stock_id=".TB_PREF."workorders.stock_id
74                 AND ".TB_PREF."wo_manufacture.id=".db_escape($id);
75     $result = db_query($sql, "The work order production could not be retrieved");
76
77     return db_fetch($result);
78 }
79
80 //--------------------------------------------------------------------------------------
81
82 function get_work_order_productions($woid)
83 {
84         $sql = "SELECT * FROM ".TB_PREF."wo_manufacture WHERE workorder_id="
85                 .db_escape($woid)." ORDER BY id";
86     return db_query($sql, "The work order issues could not be retrieved");
87 }
88
89 //--------------------------------------------------------------------------------------
90
91 function exists_work_order_produce($id)
92 {
93         $sql = "SELECT id FROM ".TB_PREF."wo_manufacture WHERE id=".db_escape($id);
94         $result = db_query($sql, "Cannot retreive a wo production");
95
96     return (db_num_rows($result) > 0);
97 }
98
99 //--------------------------------------------------------------------------------------------
100
101 function void_work_order_produce($type_no)
102 {
103         begin_transaction();
104
105         $row = get_work_order_produce($type_no);
106
107         // deduct the quantity of this production from the parent work order
108         work_order_update_finished_quantity($row["workorder_id"], -$row["quantity"]);
109
110         // clear the production record
111         $sql = "UPDATE ".TB_PREF."wo_manufacture SET quantity=0 WHERE id=".db_escape($type_no);
112         db_query($sql, "Cannot void a wo production");
113
114         // void all related stock moves
115         void_stock_move(ST_MANURECEIVE, $type_no);
116
117         // void any related gl trans
118         void_gl_trans(ST_MANURECEIVE, $type_no, true);
119
120         commit_transaction();
121 }
122
123
124 ?>