Reverted invalid changes in manufacturing accounts back to cogs_account for BOM servi...
[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         $args = func_get_args();
21         $args = (object)array_combine(array('woid', 'ref', 'to_work_order', 'items', 'location', 
22                 'workcentre', 'date_', 'memo_'), $args);
23         $args->trans_no = 0;
24         hook_db_prewrite($args, ST_MANUISSUE);
25
26         $details = get_work_order($woid);
27
28     if (strlen($details[0]) == 0)
29     {
30         echo _("The order number sent is not valid.");
31         cancel_transaction();
32         exit;
33     }
34
35         if (work_order_is_closed($woid))
36         {
37                 display_error("UNEXPECTED : Issuing items for a closed Work Order");
38                 cancel_transaction();
39                 exit;
40         }
41
42         // insert the actual issue
43         $sql = "INSERT INTO ".TB_PREF."wo_issues (workorder_id, reference, issue_date, loc_code, workcentre_id)
44                 VALUES (".db_escape($woid).", ".db_escape($ref).", '" .
45                 date2sql($date_) . "', ".db_escape($location).", ".db_escape($workcentre).")";
46         db_query($sql,"The work order issue could not be added");
47
48         $number = db_insert_id();
49
50         $issue_total = $total_cost = 0;
51
52         foreach ($items as $item)
53         {
54
55                 if ($to_work_order)
56                         $item->quantity = -$item->quantity;
57
58                 //Chaitanya: Stamp the standard_cost
59                 $standard_cost = get_standard_cost($item->stock_id);
60                 // insert a -ve stock move for each item
61                 add_stock_move(ST_MANUISSUE, $item->stock_id, $number,
62                         $location, $date_, $memo_, -$item->quantity, $standard_cost);
63
64                 $sql = "INSERT INTO ".TB_PREF."wo_issue_items (issue_id, stock_id, qty_issued)
65                         VALUES (".db_escape($number).", ".db_escape($item->stock_id).", "
66                         .db_escape($item->quantity).")";
67                 db_query($sql,"A work order issue item could not be added");
68
69                 $standard_cost = get_standard_cost($item->stock_id);
70                 $issue_cost = $standard_cost * $item->quantity;
71                 $issue = get_stock_gl_code($item->stock_id);
72         $stockitem = get_item($item->stock_id);
73                 
74                 //Chaitanya : Compatibility for Service Items
75                 if (!is_service($issue["mb_flag"]))
76                         $ivaccount = $issue["inventory_account"];
77                 else
78                         $ivaccount = $issue["cogs_account"];            
79                 
80         $total_cost += add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $ivaccount, 0, 0,
81                 $date_.": "._("Issue of")." ".$stockitem["description"], -$issue_cost);                 
82                 $issue_total += $issue_cost;
83         }       
84         if ($issue_total != 0)
85                 //Chaitanya : Apply cost to QOH as adjustment only
86                 add_issue_cost($details['stock_id'], $details['units_reqd'], $date_, $issue_total, true);
87         $issue = get_stock_gl_code($details['stock_id']);
88     $stockitem = get_item($details['stock_id']);
89     add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $issue["inventory_account"],
90         0, 0, $date_.": "._("Issue to")." ".$stockitem["description"], -$total_cost);   
91
92         if ($memo_)
93                 add_comments(ST_MANUISSUE, $number, $date_, $memo_);
94
95         $Refs->save(ST_MANUISSUE, $number, $ref);
96         add_audit_trail(ST_MANUISSUE, $number, $date_);
97
98         $args->trans_no = $number;
99         hook_db_postwrite($args, ST_MANUISSUE);
100         commit_transaction();
101 }
102
103 //--------------------------------------------------------------------------------------
104
105 function get_work_order_issues($woid)
106 {
107         $sql = "SELECT * FROM ".TB_PREF."wo_issues WHERE workorder_id=".db_escape($woid)
108         ." ORDER BY issue_no";
109     return db_query($sql, "The work order issues could not be retrieved");
110 }
111
112 function get_additional_issues($woid)
113 {
114         $sql = "SELECT ".TB_PREF."wo_issues.*, ".TB_PREF."wo_issue_items.*
115                 FROM ".TB_PREF."wo_issues, ".TB_PREF."wo_issue_items
116                 WHERE ".TB_PREF."wo_issues.issue_no=".TB_PREF."wo_issue_items.issue_id
117                 AND ".TB_PREF."wo_issues.workorder_id=".db_escape($woid)
118                 ." ORDER BY ".TB_PREF."wo_issue_items.id";
119     return db_query($sql, "The work order issues could not be retrieved");
120 }
121 //--------------------------------------------------------------------------------------
122
123 function get_work_order_issue($issue_no)
124 {
125         $sql = "SELECT DISTINCT ".TB_PREF."wo_issues.*, ".TB_PREF."workorders.stock_id,
126                 ".TB_PREF."stock_master.description, ".TB_PREF."locations.location_name, "
127                 .TB_PREF."workcentres.name AS WorkCentreName
128                 FROM ".TB_PREF."wo_issues, ".TB_PREF."workorders, ".TB_PREF."stock_master, "
129                 .TB_PREF."locations, ".TB_PREF."workcentres
130                 WHERE issue_no=".db_escape($issue_no)."
131                 AND ".TB_PREF."workorders.id = ".TB_PREF."wo_issues.workorder_id
132                 AND ".TB_PREF."locations.loc_code = ".TB_PREF."wo_issues.loc_code
133                 AND ".TB_PREF."workcentres.id = ".TB_PREF."wo_issues.workcentre_id
134                 AND ".TB_PREF."stock_master.stock_id = ".TB_PREF."workorders.stock_id";
135     $result = db_query($sql, "A work order issue could not be retrieved");
136
137     return db_fetch($result);
138 }
139
140 //--------------------------------------------------------------------------------------
141
142 function get_work_order_issue_details($issue_no)
143 {
144         $sql = "SELECT ".TB_PREF."wo_issue_items.*,"
145         .TB_PREF."stock_master.description, ".TB_PREF."stock_master.units
146                 FROM ".TB_PREF."wo_issue_items, ".TB_PREF."stock_master
147                 WHERE issue_id=".db_escape($issue_no)."
148                 AND ".TB_PREF."stock_master.stock_id=".TB_PREF."wo_issue_items.stock_id
149                 ORDER BY ".TB_PREF."wo_issue_items.id";
150     return db_query($sql, "The work order issue items could not be retrieved");
151 }
152
153 //--------------------------------------------------------------------------------------
154
155 function exists_work_order_issue($issue_no)
156 {
157         $sql = "SELECT issue_no FROM ".TB_PREF."wo_issues WHERE issue_no=".db_escape($issue_no);
158         $result = db_query($sql, "Cannot retreive a wo issue");
159
160     return (db_num_rows($result) > 0);
161 }
162
163 //--------------------------------------------------------------------------------------
164
165 function void_work_order_issue($type_no)
166 {
167         begin_transaction();
168         hook_db_prevoid(ST_MANUISSUE, $type_no);
169         
170         //Chaitanya : Skip processing already voided entry i.e. explicitly voided
171         $void_entry = get_voided_entry(ST_MANUISSUE, $type_no);
172         if ($void_entry)
173                 return;
174
175         // void the actual issue items and their quantities
176         $sql = "UPDATE ".TB_PREF."wo_issue_items Set qty_issued = 0 WHERE issue_id="
177                 .db_escape($type_no);
178         db_query($sql,"A work order issue item could not be voided");
179
180         // void any related gl trans
181         //Chaitanya : Nothing happens due to next statement as all gl postings are done against WO
182         //void_gl_trans(ST_MANUISSUE, $type_no, true);
183         
184         //Chaitanya : Reverse the gl posting
185         $issue = get_work_order_issue($type_no);
186         $manf_stock_id = $issue["stock_id"];
187         $date_ = sql2date($issue["issue_date"]);
188         $woid = $issue["workorder_id"];
189                 
190         $result = get_stock_moves(ST_MANUISSUE, $type_no);
191         $total_cost = 0;
192         $issue_total = 0;
193         while ($myrow = db_fetch($result))
194         {
195                 $issue_cost = $myrow["qty"]*$myrow["standard_cost"];
196                 $issue = get_stock_gl_code($myrow["stock_id"]);
197         $stockitem = get_item($myrow["stock_id"]);
198                 
199                 //Chaitanya : Compatibility for Service Items
200                 if (!is_service($issue["mb_flag"]))
201                         $ivaccount = $issue["inventory_account"];
202                 else
203                         $ivaccount = $issue["cogs_account"];            
204                 
205                 if ($issue_cost != 0)
206                 {
207                         $total_cost += add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $ivaccount, 0, 0,
208                                 $date_.": "._("Reversed the issue of")." ".$stockitem["description"],
209                                 -$issue_cost);                  
210                         $issue_total += $issue_cost;
211                 }
212         }
213         if ($issue_total != 0)
214                 //Chaitanya : Revese cost effect on manfactured stock item as adjustment only
215                 add_issue_cost($manf_stock_id, 0, $date_, $issue_total, true);
216         $issue = get_stock_gl_code($manf_stock_id);
217     $stockitem = get_item($manf_stock_id);
218         if ($total_cost != 0)
219                 add_gl_trans_std_cost(ST_WORKORDER, $woid, $date_, $issue["inventory_account"],
220                         0, 0, $date_.": "._("Reversed the issue to")." ".$stockitem["description"], 
221                         -$total_cost);  
222         
223         //Chaitanya : Shifted below void all related stock moves
224         void_stock_move(ST_MANUISSUE, $type_no);
225         
226         commit_transaction();
227 }
228
229
230 //--------------------------------------------------------------------------------------
231
232 ?>