-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathwork_order_release.php
116 lines (87 loc) · 3.25 KB
/
work_order_release.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
<?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_MANUFRELEASE';
$path_to_root = "..";
include_once($path_to_root . "/includes/session.inc");
include_once($path_to_root . "/includes/date_functions.inc");
include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
include_once($path_to_root . "/manufacturing/includes/manufacturing_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 = "Work Order Release to Manufacturing"), false, false, "", $js);
if (isset($_GET["trans_no"]))
{
$selected_id = $_GET["trans_no"];
}
elseif (isset($_POST["selected_id"]))
{
$selected_id = $_POST["selected_id"];
}
else
{
display_note("This page must be called with a work order reference");
exit;
}
//------------------------------------------------------------------------------------
function can_process($myrow)
{
if ($myrow['released'])
{
display_error(_("This work order has already been released."));
set_focus('released');
return false;
}
// make sure item has components
// We don't need to stop the user to release it if it's and advanced order.
// The user know what he is doing.
if (!has_bom($myrow['stock_id']) && $myrow['type'] != WO_ADVANCED)
{
display_error(_("This Work Order cannot be released. The selected item to manufacture does not have a bom."));
set_focus('stock_id');
return false;
}
return true;
}
//------------------------------------------------------------------------------------
if (isset($_POST['release']))
{
release_work_order($selected_id, $_POST['released_date'], $_POST['memo_']);
display_notification(_("The work order has been released to manufacturing."));
display_note(get_trans_view_str(ST_WORKORDER, $selected_id, _("View this Work Order")));
hyperlink_no_params("search_work_orders.php", _("Select another &work order"));
br();
$Ajax->activate('_page_body');
end_page();
exit;
}
//------------------------------------------------------------------------------------
start_form();
$myrow = get_work_order($selected_id);
$_POST['released'] = $myrow["released"];
$_POST['memo_'] = "";
if (can_process($myrow))
{
start_table(TABLESTYLE2);
label_row(_("Work Order #:"), $selected_id);
label_row(_("Work Order Reference:"), $myrow["wo_ref"]);
date_row(_("Released Date") . ":", 'released_date');
textarea_row(_("Memo:"), 'memo_', $_POST['memo_'], 40, 5);
end_table(1);
submit_center('release', _("Release Work Order"), true, '', 'default');
hidden('selected_id', $selected_id);
hidden('stock_id', $myrow['stock_id']);
}
end_form();
end_page();