Fixed get_post() support for numeric fields.
[fa-stable.git] / applications / manufacturing.php
index 46b95fe655f58e62fa8cc0211e0a5dfae6b66930..44b5e630e6ff30c2d82b40f4c3c150639fd74a5d 100644 (file)
@@ -1,26 +1,44 @@
-<?php\r
-\r
-       class manufacturing_app extends application \r
-       {\r
-               function manufacturing_app() \r
-               {\r
-                       $this->application("manuf",_("Manufacturing"));\r
-\r
-                       $this->add_module(_("Transactions"));\r
-                       $this->add_lapp_function(0, _("Work Order Entry"),"manufacturing/work_order_entry.php?");\r
-                       $this->add_lapp_function(0, _("Outstanding Work Orders"),"manufacturing/search_work_orders.php?OutstandingOnly=1");\r
-\r
-                       $this->add_module(_("Inquiries and Reports"));\r
-                       //$this->add_lapp_function(1, _("Costed Bill Of Material Inquiry"),"manufacturing/inquiry/bom_cost_inquiry.php?");\r
-                       $this->add_lapp_function(1, _("Inventory Item Where Used Inquiry"),"manufacturing/inquiry/where_used_inquiry.php?");\r
-                       $this->add_lapp_function(1, _("Work Order Inquiry"),"manufacturing/search_work_orders.php?");\r
-                       $this->add_rapp_function(1, _("Manufactoring Reports"),"reporting/reports_main.php?Class=3");\r
-\r
-                       $this->add_module(_("Maintenance"));\r
-                       $this->add_lapp_function(2, _("Bills Of Material"),"manufacturing/manage/bom_edit.php?");\r
-                       $this->add_lapp_function(2, _("Work Centres"),"manufacturing/manage/work_centres.php?");\r
-               }\r
-       }\r
-\r
-\r
-?>
\ No newline at end of file
+<?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>.
+***********************************************************************/
+class manufacturing_app extends application
+{
+       function __construct()
+       {
+               parent::__construct("manuf", _($this->help_context = "&Manufacturing"));
+
+               $this->add_module(_("Transactions"));
+               $this->add_lapp_function(0, _("Work &Order Entry"),
+                       "manufacturing/work_order_entry.php?", 'SA_WORKORDERENTRY', MENU_TRANSACTION);
+               $this->add_lapp_function(0, _("&Outstanding Work Orders"),
+                       "manufacturing/search_work_orders.php?outstanding_only=1", 'SA_MANUFTRANSVIEW', MENU_TRANSACTION);
+
+               $this->add_module(_("Inquiries and Reports"));
+               $this->add_lapp_function(1, _("Costed Bill Of Material Inquiry"),
+                       "manufacturing/inquiry/bom_cost_inquiry.php?", 'SA_WORKORDERCOST', MENU_INQUIRY);
+               $this->add_lapp_function(1, _("Inventory Item Where Used &Inquiry"),
+                       "manufacturing/inquiry/where_used_inquiry.php?", 'SA_WORKORDERANALYTIC', MENU_INQUIRY);
+               $this->add_lapp_function(1, _("Work Order &Inquiry"),
+                       "manufacturing/search_work_orders.php?", 'SA_MANUFTRANSVIEW', MENU_INQUIRY);
+               $this->add_rapp_function(1, _("Manufacturing &Reports"),
+                       "reporting/reports_main.php?Class=3", 'SA_MANUFTRANSVIEW', MENU_REPORT);
+
+               $this->add_module(_("Maintenance"));
+               $this->add_lapp_function(2, _("&Bills Of Material"),
+                       "manufacturing/manage/bom_edit.php?", 'SA_BOM', MENU_ENTRY);
+               $this->add_lapp_function(2, _("&Work Centres"),
+                       "manufacturing/manage/work_centres.php?", 'SA_WORKCENTRES', MENU_MAINTENANCE);
+
+               $this->add_extensions();
+       }
+}
+
+