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