Fixed a couple of obvious errors.
[fa-stable.git] / manufacturing / work_order_release.php
index edacd995bed8565b87362381f265450be3f15aba..10044b7b01f6f6542399bc5501cfe99b6f341063 100644 (file)
@@ -52,7 +52,10 @@ function can_process($myrow)
        }
 
        // make sure item has components
-       if (!has_bom($myrow['stock_id']))
+    // 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');
@@ -72,6 +75,7 @@ if (isset($_POST['release']))
     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();