b8036c371446757c245dec45340822f4a4e036e8
[fa-stable.git] / manufacturing / work_order_add_finished.php
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 $page_security = 10;
13 $path_to_root="..";
14 include_once($path_to_root . "/includes/session.inc");
15
16 include_once($path_to_root . "/includes/date_functions.inc");
17 include_once($path_to_root . "/includes/db/inventory_db.inc");
18 include_once($path_to_root . "/includes/manufacturing.inc");
19
20 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
21 include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc");
22
23 $js = "";
24 if ($use_popup_windows)
25         $js .= get_js_open_window(900, 500);
26 if ($use_date_picker)
27         $js .= get_js_date_picker();
28 page(_("Produce or Unassemble Finished Items From Work Order"), false, false, "", $js);
29
30 if (isset($_GET['trans_no']) && $_GET['trans_no'] != "")
31 {
32         $_POST['selected_id'] = $_GET['trans_no'];
33 }
34
35 //--------------------------------------------------------------------------------------------------
36
37 if (isset($_GET['AddedID']))
38 {
39
40         display_note(_("The manufacturing process has been entered."));
41
42         hyperlink_no_params("search_work_orders.php", _("Select another &Work Order to Process"));
43
44         end_page();
45         exit;
46 }
47
48 //--------------------------------------------------------------------------------------------------
49
50 $wo_details = get_work_order($_POST['selected_id']);
51
52 if (strlen($wo_details[0]) == 0)
53 {
54         display_error(_("The order number sent is not valid."));
55         exit;
56 }
57
58 //--------------------------------------------------------------------------------------------------
59
60 function can_process()
61 {
62         global $wo_details;
63
64         if (!references::is_valid($_POST['ref']))
65         {
66                 display_error(_("You must enter a reference."));
67                 set_focus('ref');
68                 return false;
69         }
70
71         if (!is_new_reference($_POST['ref'], 29))
72         {
73                 display_error(_("The entered reference is already in use."));
74                 set_focus('ref');
75                 return false;
76         }
77
78         if (!check_num('quantity', 0))
79         {
80                 display_error(_("The quantity entered is not a valid number or less then zero."));
81                 set_focus('quantity');
82                 return false;
83         }
84
85         if (!is_date($_POST['date_']))
86         {
87                 display_error(_("The entered date is invalid."));
88                 set_focus('date_');
89                 return false;
90         }
91         elseif (!is_date_in_fiscalyear($_POST['date_']))
92         {
93                 display_error(_("The entered date is not in fiscal year."));
94                 set_focus('date_');
95                 return false;
96         }
97         if (date_diff(sql2date($wo_details["released_date"]), $_POST['date_'], "d") > 0)
98         {
99                 display_error(_("The production date cannot be before the release date of the work order."));
100                 set_focus('date_');
101                 return false;
102         }
103
104         // if unassembling we need to check the qoh
105         if (($_POST['ProductionType'] == 0) && !sys_prefs::allow_negative_stock())
106         {
107                 $wo_details = get_work_order($_POST['selected_id']);
108
109                 $qoh = get_qoh_on_date($wo_details["stock_id"], $wo_details["loc_code"], $date_);
110                 if (-$_POST['quantity'] + $qoh < 0)
111                 {
112                         display_error(_("The unassembling cannot be processed because there is insufficient stock."));
113                         set_focus('quantity');
114                         return false;
115                 }
116         }
117
118         return true;
119 }
120
121 //--------------------------------------------------------------------------------------------------
122
123 if (isset($_POST['Process']) || (isset($_POST['ProcessAndClose']) && can_process() == true))
124 {
125
126         $close_wo = 0;
127         if (isset($_POST['ProcessAndClose']) && ($_POST['ProcessAndClose']!=""))
128                 $close_wo = 1;
129
130         // if unassembling, negate quantity
131         if ($_POST['ProductionType'] == 0)
132                 $_POST['quantity'] = -$_POST['quantity'];
133
134          $id = work_order_produce($_POST['selected_id'], $_POST['ref'], $_POST['quantity'],
135                         $_POST['date_'], $_POST['memo_'], $close_wo);
136
137         meta_forward($_SERVER['PHP_SELF'], "AddedID=$id");
138 }
139
140 //-------------------------------------------------------------------------------------
141
142 display_wo_details($_POST['selected_id']);
143
144 //-------------------------------------------------------------------------------------
145
146 start_form();
147
148 hidden('selected_id', $_POST['selected_id']);
149 //hidden('WOReqQuantity', $_POST['WOReqQuantity']);
150
151 if (!isset($_POST['quantity']) || $_POST['quantity'] == '')
152 {
153         $_POST['quantity'] = max($wo_details["units_reqd"] - $wo_details["units_issued"], 0);
154 }
155
156 start_table();
157
158 ref_row(_("Reference:"), 'ref', '', references::get_next(29));
159
160 if (!isset($_POST['ProductionType']))
161         $_POST['ProductionType'] = 1;
162
163 yesno_list_row(_("Type:"), 'ProductionType', $_POST['ProductionType'],
164         _("Produce Finished Items"), _("Return Items to Work Order"));
165
166 small_qty_row(_("Quantity:"), 'quantity', null, null, null, get_qty_dec($wo_details["stock_id"]));
167
168 date_row(_("Date:"), 'date_');
169
170 textarea_row(_("Memo:"), 'memo_', null, 40, 3);
171
172 end_table(1);
173
174 submit_center_first('Process', _("Process"), '', true);
175 submit_center_last('ProcessAndClose', _("Process And Close Order"), '', true);
176
177 end_form();
178
179 end_page();
180
181 ?>