Update from usntable branch.
[fa-stable.git] / manufacturing / includes / db / work_order_issues_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_issue($woid, $ref, $to_work_order, $items, $location, $workcentre,
15         $date_, $memo_)
16 {
17         global $Refs;
18
19         begin_transaction();
20
21         $details = get_work_order($woid);
22
23     if (strlen($details[0]) == 0)
24     {
25         echo _("The order number sent is not valid.");
26         cancel_transaction();
27         exit;
28     }
29
30         if (work_order_is_closed($woid))
31         {
32                 display_error("UNEXPECTED : Issuing items for a closed Work Order");
33                 cancel_transaction();
34                 exit;
35         }
36
37         // insert the actual issue
38         $sql = "INSERT INTO ".TB_PREF."wo_issues (workorder_id, reference, issue_date, loc_code, workcentre_id)
39                 VALUES (".db_escape($woid).", ".db_escape($ref).", '" .
40                 date2sql($date_) . "', ".db_escape($location).", ".db_escape($workcentre).")";
41         db_query($sql,"The work order issue could not be added");
42
43         $number = db_insert_id();
44
45         foreach ($items as $item)
46         {
47
48                 if ($to_work_order)
49                         $item->quantity = -$item->quantity;
50
51                 // insert a -ve stock move for each item
52                 add_stock_move(ST_MANUISSUE, $item->stock_id, $number,
53                         $location, $date_, $memo_, -$item->quantity, 0);
54
55                 $sql = "INSERT INTO ".TB_PREF."wo_issue_items (issue_id, stock_id, qty_issued)
56                         VALUES (".db_escape($number).", ".db_escape($item->stock_id).", "
57                         .db_escape($item->quantity).")";
58                 db_query($sql,"A work order issue item could not be added");
59         }
60
61         if ($memo_)
62                 add_comments(ST_MANUISSUE, $number, $date_, $memo_);
63
64         $Refs->save(ST_MANUISSUE, $number, $ref);
65         add_audit_trail(ST_MANUISSUE, $number, $date_);
66
67         commit_transaction();
68 }
69
70 //--------------------------------------------------------------------------------------
71
72 function get_work_order_issues($woid)
73 {
74         $sql = "SELECT * FROM ".TB_PREF."wo_issues WHERE workorder_id=".db_escape($woid)
75         ." ORDER BY issue_no";
76     return db_query($sql, "The work order issues could not be retrieved");
77 }
78
79 function get_additional_issues($woid)
80 {
81         $sql = "SELECT ".TB_PREF."wo_issues.*, ".TB_PREF."wo_issue_items.*
82                 FROM ".TB_PREF."wo_issues, ".TB_PREF."wo_issue_items
83                 WHERE ".TB_PREF."wo_issues.issue_no=".TB_PREF."wo_issue_items.issue_id
84                 AND ".TB_PREF."wo_issues.workorder_id=".db_escape($woid)
85                 ." ORDER BY ".TB_PREF."wo_issue_items.id";
86     return db_query($sql, "The work order issues could not be retrieved");
87 }
88 //--------------------------------------------------------------------------------------
89
90 function get_work_order_issue($issue_no)
91 {
92         $sql = "SELECT DISTINCT ".TB_PREF."wo_issues.*, ".TB_PREF."workorders.stock_id,
93                 ".TB_PREF."stock_master.description, ".TB_PREF."locations.location_name, "
94                 .TB_PREF."workcentres.name AS WorkCentreName
95                 FROM ".TB_PREF."wo_issues, ".TB_PREF."workorders, ".TB_PREF."stock_master, "
96                 .TB_PREF."locations, ".TB_PREF."workcentres
97                 WHERE issue_no=".db_escape($issue_no)."
98                 AND ".TB_PREF."workorders.id = ".TB_PREF."wo_issues.workorder_id
99                 AND ".TB_PREF."locations.loc_code = ".TB_PREF."wo_issues.loc_code
100                 AND ".TB_PREF."workcentres.id = ".TB_PREF."wo_issues.workcentre_id
101                 AND ".TB_PREF."stock_master.stock_id = ".TB_PREF."workorders.stock_id";
102     $result = db_query($sql, "A work order issue could not be retrieved");
103
104     return db_fetch($result);
105 }
106
107 //--------------------------------------------------------------------------------------
108
109 function get_work_order_issue_details($issue_no)
110 {
111         $sql = "SELECT ".TB_PREF."wo_issue_items.*,"
112         .TB_PREF."stock_master.description, ".TB_PREF."stock_master.units
113                 FROM ".TB_PREF."wo_issue_items, ".TB_PREF."stock_master
114                 WHERE issue_id=".db_escape($issue_no)."
115                 AND ".TB_PREF."stock_master.stock_id=".TB_PREF."wo_issue_items.stock_id
116                 ORDER BY ".TB_PREF."wo_issue_items.id";
117     return db_query($sql, "The work order issue items could not be retrieved");
118 }
119
120 //--------------------------------------------------------------------------------------
121
122 function exists_work_order_issue($issue_no)
123 {
124         $sql = "SELECT issue_no FROM ".TB_PREF."wo_issues WHERE issue_no=".db_escape($issue_no);
125         $result = db_query($sql, "Cannot retreive a wo issue");
126
127     return (db_num_rows($result) > 0);
128 }
129
130 //--------------------------------------------------------------------------------------
131
132 function void_work_order_issue($type_no)
133 {
134         begin_transaction();
135
136         // void the actual issue items and their quantities
137         $sql = "UPDATE ".TB_PREF."wo_issue_items Set qty_issued = 0 WHERE issue_id="
138                 .db_escape($type_no);
139         db_query($sql,"A work order issue item could not be voided");
140
141         // void all related stock moves
142         void_stock_move(ST_MANUISSUE, $type_no);
143
144         // void any related gl trans
145         void_gl_trans(ST_MANUISSUE, $type_no, true);
146
147         commit_transaction();
148 }
149
150
151 //--------------------------------------------------------------------------------------
152
153 ?>