X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fwork_order_release.php;h=7e0f54f2262617f069872f357892951f6f0fef03;hb=b0c4c9777f9574e9c2805fddc2a12576d75d94ce;hp=0d58b749a550b8e9969f56f316e5a584537abe49;hpb=d2cc0860eccf02eaefcd90731ac3af141a841529;p=fa-stable.git diff --git a/manufacturing/work_order_release.php b/manufacturing/work_order_release.php index 0d58b749..7e0f54f2 100644 --- a/manufacturing/work_order_release.php +++ b/manufacturing/work_order_release.php @@ -22,7 +22,7 @@ include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc"); $js = ""; if ($use_popup_windows) $js .= get_js_open_window(800, 500); -if ($use_date_picker) +if (user_use_date_picker()) $js .= get_js_date_picker(); page(_($help_context = "Work Order Release to Manufacturing"), false, false, "", $js); @@ -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(); @@ -89,7 +93,7 @@ $_POST['memo_'] = ""; if (can_process($myrow)) { - start_table($table_style2); + start_table(TABLESTYLE2); label_row(_("Work Order #:"), $selected_id); label_row(_("Work Order Reference:"), $myrow["wo_ref"]); @@ -111,4 +115,3 @@ end_form(); end_page(); -?> \ No newline at end of file