0002183: Advanced assembly should work with empty BOM. Fixed.
[fa-stable.git] / manufacturing / work_order_release.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 = 'SA_MANUFRELEASE';
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/manufacturing.inc");
18
19 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
20 include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc");
21
22 $js = "";
23 if ($use_popup_windows)
24         $js .= get_js_open_window(800, 500);
25 if ($use_date_picker)
26         $js .= get_js_date_picker();
27 page(_($help_context = "Work Order Release to Manufacturing"), false, false, "", $js);
28
29 if (isset($_GET["trans_no"]))
30 {
31         $selected_id = $_GET["trans_no"];
32 }
33 elseif (isset($_POST["selected_id"]))
34 {
35         $selected_id = $_POST["selected_id"];
36 }
37 else
38 {
39         display_note("This page must be called with a work order reference");
40         exit;
41 }
42
43 //------------------------------------------------------------------------------------
44
45 function can_process($myrow)
46 {
47         if ($myrow['released'])
48         {
49                 display_error(_("This work order has already been released."));
50                 set_focus('released');
51                 return false;
52         }
53
54         // make sure item has components
55     // We don't need to stop the user to release it if it's and advanced order.
56     // The user know what he is doing.
57
58     if (!has_bom($myrow['stock_id']) && $myrow['type'] != WO_ADVANCED)
59         {
60                 display_error(_("This Work Order cannot be released. The selected item to manufacture does not have a bom."));
61                 set_focus('stock_id');
62                 return false;
63         }
64
65         return true;
66 }
67
68 //------------------------------------------------------------------------------------
69 if (isset($_POST['release']))
70 {
71         release_work_order($selected_id, $_POST['released_date'], $_POST['memo_']);
72
73         display_notification(_("The work order has been released to manufacturing."));
74
75     display_note(get_trans_view_str(ST_WORKORDER, $selected_id, _("View this Work Order")));
76
77         hyperlink_no_params("search_work_orders.php", _("Select another &work order"));
78         br();
79
80         $Ajax->activate('_page_body');
81         end_page();
82         exit;
83 }
84
85 //------------------------------------------------------------------------------------
86
87 start_form();
88
89 $myrow = get_work_order($selected_id);
90
91 $_POST['released'] = $myrow["released"];
92 $_POST['memo_'] = "";
93
94 if (can_process($myrow))
95 {
96         start_table(TABLESTYLE2);
97
98     label_row(_("Work Order #:"), $selected_id);
99     label_row(_("Work Order Reference:"), $myrow["wo_ref"]);
100
101     date_row(_("Released Date") . ":", 'released_date');
102
103     textarea_row(_("Memo:"), 'memo_', $_POST['memo_'], 40, 5);
104
105     end_table(1);
106
107     submit_center('release', _("Release Work Order"), true, '', 'default');
108
109     hidden('selected_id', $selected_id);
110     hidden('stock_id', $myrow['stock_id']);
111
112 }
113
114 end_form();
115
116 end_page();
117
118 ?>