Fixed hidden fields output (backported; fixes problem with security role editiom).
[fa-stable.git] / manufacturing / view / work_order_view.php
index d63f2de351d00b1b0c36ed52a6b7d3820197ce17..611fe88caf0b4637a19c5f93adde1e1bd257aec2 100644 (file)
@@ -1,7 +1,16 @@
 <?php
-
-$page_security = 10;
-$path_to_root="../..";
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+$page_security = 'SA_MANUFTRANSVIEW';
+$path_to_root = "../..";
 
 include_once($path_to_root . "/includes/session.inc");
 
@@ -14,7 +23,7 @@ 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;
@@ -23,11 +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);
@@ -35,7 +45,7 @@ else
 echo "<center>";
 
 // display the WO requirements
-echo "<br>";
+br(1);
 if ($myrow["released"] == false)
 {
     display_heading2(_("BOM for item:") . " " . $myrow["StockItemName"]);
@@ -45,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 "<br><table cellspacing=7><tr valign=top><td>";
        display_heading2(_("Issues"));
@@ -54,7 +64,14 @@ else
        display_heading2(_("Productions"));
        display_wo_productions($woid);
        echo "</td><td>";
-       display_heading2(_("Payments"));
+       display_heading2(_("Additional Costs"));
+       display_wo_payments($woid);
+       echo "</td></tr></table>";
+       }
+       else
+       {
+       echo "<br><table cellspacing=7><tr valign=top><td>";
+       display_heading2(_("Additional Costs"));
        display_wo_payments($woid);
        echo "</td></tr></table>";
        }
@@ -62,8 +79,8 @@ else
 
 echo "<br></center>";
 
-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);
 
 ?>