Incorrect Journal Balance (sales invoice) when many decimals in tax and price.
[fa-stable.git] / manufacturing / view / wo_production_view.php
index 64e287e73ba174fc1e7be82e14ec154524e4984e..6cd68020850e57ed3a869665a329314026233653 100644 (file)
@@ -1,14 +1,25 @@
 <?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");
 
-page(_("View Work Order Production"), true);
+$js = "";
+if ($SysPrefs->use_popup_windows)
+       $js .= get_js_open_window(900, 500);
+page(_($help_context = "View Work Order Production"), true, false, "", $js);
 
 include_once($path_to_root . "/includes/date_functions.inc");
-include_once($path_to_root . "/includes/manufacturing.inc");
 include_once($path_to_root . "/includes/data_checks.inc");
 
 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
@@ -25,12 +36,10 @@ if ($_GET['trans_no'] != "")
 
 function display_wo_production($prod_id)
 {
-       global $table_style;
-
     $myrow = get_work_order_produce($prod_id);
 
        br(1);
-    start_table($table_style);
+    start_table(TABLESTYLE);
     $th = array(_("Production #"), _("Reference"), _("For Work Order #"),
        _("Item"), _("Quantity Manufactured"), _("Date"));
     table_header($th);
@@ -38,22 +47,22 @@ function display_wo_production($prod_id)
        start_row();
        label_cell($myrow["id"]);
        label_cell($myrow["reference"]);
-       label_cell(get_trans_view_str(systypes::work_order(),$myrow["workorder_id"]));
+       label_cell(get_trans_view_str(ST_WORKORDER,$myrow["workorder_id"]));
        label_cell($myrow["stock_id"] . " - " . $myrow["StockDescription"]);
        qty_cell($myrow["quantity"], false, get_qty_dec($myrow["stock_id"]));
        label_cell(sql2date($myrow["date_"]));
        end_row();
 
-    comments_display_row(29, $prod_id);
+    comments_display_row(ST_MANURECEIVE, $prod_id);
 
        end_table(1);
 
-       is_voided_display(29, $prod_id, _("This production has been voided."));
+       is_voided_display(ST_MANURECEIVE, $prod_id, _("This production has been voided."));
 }
 
 //-------------------------------------------------------------------------------------------------
 
-display_heading(systypes::name(29) . " # " . $wo_production);
+display_heading($systypes_array[ST_MANURECEIVE] . " # " . $wo_production);
 
 display_wo_production($wo_production);
 
@@ -61,7 +70,5 @@ display_wo_production($wo_production);
 
 br(2);
 
-end_page(true);
-
-?>
+end_page(true, false, false, ST_MANURECEIVE, $wo_production);