X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fview%2Fwork_order_view.php;h=62b3df66b715f04213b3361ee964ce1aaf95aac5;hb=80dd97a37f674cc3691fa04af4c29607067566b2;hp=e2e39ef40a4c9c8ef9f6819889fddbce08458408;hpb=818719f38b8327cdca616d58b13913dbd174d96a;p=fa-stable.git diff --git a/manufacturing/view/work_order_view.php b/manufacturing/view/work_order_view.php index e2e39ef4..62b3df66 100644 --- a/manufacturing/view/work_order_view.php +++ b/manufacturing/view/work_order_view.php @@ -1,16 +1,16 @@ . + See the License here . ***********************************************************************/ -$page_security = 10; -$path_to_root="../.."; +$page_security = 'SA_MANUFTRANSVIEW'; +$path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); @@ -32,12 +32,12 @@ 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); @@ -55,7 +55,7 @@ else { 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")); @@ -64,7 +64,14 @@ else display_heading2(_("Productions")); display_wo_productions($woid); echo ""; - display_heading2(_("Payments")); + display_heading2(_("Additional Costs")); + display_wo_payments($woid); + echo "
"; + } + else + { + echo "
"; + display_heading2(_("Additional Costs")); display_wo_payments($woid); echo "
"; } @@ -72,7 +79,7 @@ else 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);