-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathwork_order_issue.php
220 lines (170 loc) · 6.35 KB
/
work_order_issue.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php
/**********************************************************************
Copyright (C) FrontAccounting, LLC.
Released under the terms of the GNU General Public License, GPL,
as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
***********************************************************************/
$page_security = 'SA_MANUFISSUE';
$path_to_root = "..";
include_once($path_to_root . "/includes/ui/items_cart.inc");
include_once($path_to_root . "/includes/session.inc");
include_once($path_to_root . "/includes/date_functions.inc");
include_once($path_to_root . "/includes/data_checks.inc");
include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc");
include_once($path_to_root . "/manufacturing/includes/work_order_issue_ui.inc");
$js = "";
if ($SysPrefs->use_popup_windows)
$js .= get_js_open_window(800, 500);
if (user_use_date_picker())
$js .= get_js_date_picker();
page(_($help_context = "Issue Items to Work Order"), false, false, "", $js);
//-----------------------------------------------------------------------------------------------
if (isset($_GET['AddedID']))
{
$id = $_GET['AddedID'];
display_notification(_("The work order issue has been entered."));
display_note(get_trans_view_str(ST_WORKORDER, $id, _("View this Work Order")));
display_note(get_gl_view_str(ST_WORKORDER, $id, _("View the GL Journal Entries for this Work Order")), 1);
hyperlink_no_params("search_work_orders.php", _("Select another &Work Order to Process"));
display_footer_exit();
}
//--------------------------------------------------------------------------------------------------
function line_start_focus() {
global $Ajax;
$Ajax->activate('items_table');
set_focus('_stock_id_edit');
}
//--------------------------------------------------------------------------------------------------
function handle_new_order()
{
if (isset($_SESSION['issue_items']))
{
$_SESSION['issue_items']->clear_items();
unset ($_SESSION['issue_items']);
}
$_SESSION['issue_items'] = new items_cart(ST_MANUISSUE);
$_SESSION['issue_items']->order_id = $_GET['trans_no'];
}
//-----------------------------------------------------------------------------------------------
function can_process()
{
if (!is_date($_POST['date_']))
{
display_error(_("The entered date for the issue is invalid."));
set_focus('date_');
return false;
}
elseif (!is_date_in_fiscalyear($_POST['date_']))
{
display_error(_("The entered date is out of fiscal year or is closed for further data entry."));
set_focus('date_');
return false;
}
if (!check_reference($_POST['ref'], ST_MANUISSUE))
{
set_focus('ref');
return false;
}
$failed_item = $_SESSION['issue_items']->check_qoh($_POST['Location'], $_POST['date_'], !$_POST['IssueType']);
if ($failed_item)
{
display_error(_("The issue cannot be processed because it would cause negative inventory balance for marked items as of document date or later."));
return false;
}
return true;
}
if (isset($_POST['Process']) && can_process())
{
// if failed, returns a stockID
$failed_data = add_work_order_issue($_SESSION['issue_items']->order_id,
$_POST['ref'], $_POST['IssueType'], $_SESSION['issue_items']->line_items,
$_POST['Location'], $_POST['WorkCentre'], $_POST['date_'], $_POST['memo_']);
if ($failed_data != null)
{
display_error(_("The process cannot be completed because there is an insufficient total quantity for a component.") . "<br>"
. _("Component is :"). $failed_data[0] . "<br>"
. _("From location :"). $failed_data[1] . "<br>");
}
else
{
meta_forward($_SERVER['PHP_SELF'], "AddedID=".$_SESSION['issue_items']->order_id);
}
} /*end of process credit note */
//-----------------------------------------------------------------------------------------------
function check_item_data()
{
if (input_num('qty') == 0 || !check_num('qty', 0))
{
display_error(_("The quantity entered is negative or invalid."));
set_focus('qty');
return false;
}
if (!check_num('std_cost', 0))
{
display_error(_("The entered standard cost is negative or invalid."));
set_focus('std_cost');
return false;
}
return true;
}
//-----------------------------------------------------------------------------------------------
function handle_update_item()
{
if($_POST['UpdateItem'] != "" && check_item_data())
{
$id = $_POST['LineNo'];
$_SESSION['issue_items']->update_cart_item($id, input_num('qty'), input_num('std_cost'));
}
line_start_focus();
}
//-----------------------------------------------------------------------------------------------
function handle_delete_item($id)
{
$_SESSION['issue_items']->remove_from_cart($id);
line_start_focus();
}
//-----------------------------------------------------------------------------------------------
function handle_new_item()
{
if (!check_item_data())
return;
add_to_issue($_SESSION['issue_items'], $_POST['stock_id'], input_num('qty'),
input_num('std_cost'));
line_start_focus();
}
//-----------------------------------------------------------------------------------------------
$id = find_submit('Delete');
if ($id != -1)
handle_delete_item($id);
if (isset($_POST['AddItem']))
handle_new_item();
if (isset($_POST['UpdateItem']))
handle_update_item();
if (isset($_POST['CancelItemChanges'])) {
line_start_focus();
}
//-----------------------------------------------------------------------------------------------
if (isset($_GET['trans_no']))
{
handle_new_order();
}
//-----------------------------------------------------------------------------------------------
display_wo_details($_SESSION['issue_items']->order_id);
echo "<br>";
start_form();
start_table(TABLESTYLE, "width='90%'", 10);
echo "<tr><td>";
display_issue_items(_("Items to Issue"), $_SESSION['issue_items']);
issue_options_controls();
echo "</td></tr>";
end_table();
submit_center('Process', _("Process Issue"), true, '', 'default');
end_form();
//------------------------------------------------------------------------------------------------
end_page();