Fixed supplier payment view link.
[fa-stable.git] / manufacturing / view / work_order_view.php
index fb28310cbf10532d1d93a6457be5217e4a59092f..21d2e80ba4489ead70205c528cf0f8ba34b44b64 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    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 = 10;
 $path_to_root="../..";
 
@@ -18,13 +27,14 @@ page(_("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);
 
+br(1);
 $myrow = get_work_order($woid);
 
 if ($myrow["type"]  == wo_types::advanced())
@@ -34,33 +44,33 @@ else
 
 echo "<center>";
 
-// display the WO requirements 
-echo "<br>";
-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_types::advanced())
+       {
        echo "<br><table cellspacing=7><tr valign=top><td>";
-       display_heading2(_("Issues"));          
+       display_heading2(_("Issues"));
        display_wo_issues($woid);
        echo "</td><td>";
        display_heading2(_("Productions"));
        display_wo_productions($woid);
        echo "</td><td>";
        display_heading2(_("Payments"));
-       display_wo_payments($woid);     
+       display_wo_payments($woid);
        echo "</td></tr></table>";
-       }               
+       }
 }
 
-echo "<br>";
+echo "<br></center>";
 
 is_voided_display(systypes::work_order(), $woid, _("This work order has been voided."));