0e0999b0cb460725b555370b3222d9f29962162d
[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 ($woid, ".db_escape($ref).", '" .
40                 date2sql($date_) . "', ".db_escape($location).", $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 ('$number', '$item->stock_id', $item->quantity)";
57                 db_query($sql,"A work order issue item could not be added");
58         }
59
60         if ($memo_)
61                 add_comments(ST_MANUISSUE, $number, $date_, $memo_);
62
63         $Refs->save(ST_MANUISSUE, $number, $ref);
64         add_audit_trail(ST_MANUISSUE, $number, $date_);
65
66         commit_transaction();
67 }
68
69 //--------------------------------------------------------------------------------------
70
71 function get_work_order_issues($woid)
72 {
73         $sql = "SELECT * FROM ".TB_PREF."wo_issues WHERE workorder_id=$woid ORDER BY issue_no";
74     return db_query($sql, "The work order issues could not be retrieved");
75 }
76
77 function get_additional_issues($woid)
78 {
79         $sql = "SELECT ".TB_PREF."wo_issues.*, ".TB_PREF."wo_issue_items.*
80                 FROM ".TB_PREF."wo_issues, ".TB_PREF."wo_issue_items
81                 WHERE ".TB_PREF."wo_issues.issue_no=".TB_PREF."wo_issue_items.issue_id
82                 AND ".TB_PREF."wo_issues.workorder_id=$woid ORDER BY ".TB_PREF."wo_issue_items.id";
83     return db_query($sql, "The work order issues could not be retrieved");
84 }
85 //--------------------------------------------------------------------------------------
86
87 function get_work_order_issue($issue_no)
88 {
89         $sql = "SELECT DISTINCT ".TB_PREF."wo_issues.*, ".TB_PREF."workorders.stock_id,
90                 ".TB_PREF."stock_master.description, ".TB_PREF."locations.location_name, ".TB_PREF."workcentres.name AS WorkCentreName
91                 FROM ".TB_PREF."wo_issues, ".TB_PREF."workorders, ".TB_PREF."stock_master, ".TB_PREF."locations, ".TB_PREF."workcentres
92                 WHERE issue_no='$issue_no'
93                 AND ".TB_PREF."workorders.id = ".TB_PREF."wo_issues.workorder_id
94                 AND ".TB_PREF."locations.loc_code = ".TB_PREF."wo_issues.loc_code
95                 AND ".TB_PREF."workcentres.id = ".TB_PREF."wo_issues.workcentre_id
96                 AND ".TB_PREF."stock_master.stock_id = ".TB_PREF."workorders.stock_id";
97     $result = db_query($sql, "A work order issue could not be retrieved");
98
99     return db_fetch($result);
100 }
101
102 //--------------------------------------------------------------------------------------
103
104 function get_work_order_issue_details($issue_no)
105 {
106         $sql = "SELECT ".TB_PREF."wo_issue_items.*,".TB_PREF."stock_master.description, ".TB_PREF."stock_master.units
107                 FROM ".TB_PREF."wo_issue_items, ".TB_PREF."stock_master
108                 WHERE issue_id=$issue_no
109                 AND ".TB_PREF."stock_master.stock_id=".TB_PREF."wo_issue_items.stock_id
110                 ORDER BY ".TB_PREF."wo_issue_items.id";
111     return db_query($sql, "The work order issue items could not be retrieved");
112 }
113
114 //--------------------------------------------------------------------------------------
115
116 function exists_work_order_issue($issue_no)
117 {
118         $sql = "SELECT issue_no FROM ".TB_PREF."wo_issues WHERE issue_no=$issue_no";
119         $result = db_query($sql, "Cannot retreive a wo issue");
120
121     return (db_num_rows($result) > 0);
122 }
123
124 //--------------------------------------------------------------------------------------
125
126 function void_work_order_issue($type_no)
127 {
128         begin_transaction();
129
130         // void the actual issue items and their quantities
131         $sql = "UPDATE ".TB_PREF."wo_issue_items Set qty_issued = 0 WHERE issue_id=$type_no";
132         db_query($sql,"A work order issue item could not be voided");
133
134         // void all related stock moves
135         void_stock_move(ST_MANUISSUE, $type_no);
136
137         // void any related gl trans
138         void_gl_trans(ST_MANUISSUE, $type_no, true);
139
140         commit_transaction();
141 }
142
143
144 //--------------------------------------------------------------------------------------
145
146 ?>