X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fview%2Fwork_order_view.php;h=611fe88caf0b4637a19c5f93adde1e1bd257aec2;hb=e79c80704f4d0bc3d3792365dfd7ebf32f9b4227;hp=fb28310cbf10532d1d93a6457be5217e4a59092f;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/manufacturing/view/work_order_view.php b/manufacturing/view/work_order_view.php index fb28310c..611fe88c 100644 --- a/manufacturing/view/work_order_view.php +++ b/manufacturing/view/work_order_view.php @@ -1,7 +1,16 @@ . +***********************************************************************/ +$page_security = 'SA_MANUFTRANSVIEW'; +$path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); @@ -14,56 +23,64 @@ include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc"); $js = ""; if ($use_popup_windows) $js .= get_js_open_window(800, 500); -page(_("View Work Order"), true, false, "", $js); +page(_($help_context = "View Work Order"), true, false, "", $js); //------------------------------------------------------------------------------------------------- $woid = 0; -if ($_GET['trans_no'] != "") -{ +if ($_GET['trans_no'] != "") +{ $woid = $_GET['trans_no']; } -display_heading(systypes::name(systypes::work_order()) . " # " . $woid); +display_heading($systypes_array[ST_WORKORDER] . " # " . $woid); +br(1); $myrow = get_work_order($woid); -if ($myrow["type"] == wo_types::advanced()) +if ($myrow["type"] == WO_ADVANCED) display_wo_details($woid, true); else display_wo_details_quick($woid, true); echo "
"; -// display the WO requirements -echo "
"; -if ($myrow["released"] == false) -{ +// display the WO requirements +br(1); +if ($myrow["released"] == false) +{ display_heading2(_("BOM for item:") . " " . $myrow["StockItemName"]); display_bom($myrow["stock_id"]); -} -else +} +else { - display_heading2(_("Work Order Requirements")); + display_heading2(_("Work Order Requirements")); display_wo_requirements($woid, $myrow["units_reqd"]); - if ($myrow["type"] == wo_types::advanced()) - { + if ($myrow["type"] == WO_ADVANCED) + { echo "
"; - display_heading2(_("Issues")); + display_heading2(_("Issues")); display_wo_issues($woid); echo ""; display_heading2(_("Productions")); display_wo_productions($woid); echo ""; - display_heading2(_("Payments")); - display_wo_payments($woid); + display_heading2(_("Additional Costs")); + display_wo_payments($woid); + echo "
"; + } + else + { + echo "
"; + display_heading2(_("Additional Costs")); + display_wo_payments($woid); echo "
"; - } + } } -echo "
"; +echo "
"; -is_voided_display(systypes::work_order(), $woid, _("This work order has been voided.")); +is_voided_display(ST_WORKORDER, $woid, _("This work order has been voided.")); -end_page(true); +end_page(true, false, false, ST_WORKORDER, $woid); ?>