db225f4c7a50598620a4ea0db264d17778495168
[fa-stable.git] / applications / manufacturing.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12         class manufacturing_app extends application
13         {
14                 function manufacturing_app()
15                 {
16                         global $installed_modules;
17                         $this->application("manuf",_("&Manufacturing"));
18
19                         $this->add_module(_("Transactions"));
20                         $this->add_lapp_function(0, _("Work &Order Entry"),"manufacturing/work_order_entry.php?");
21                         $this->add_lapp_function(0, _("&Outstanding Work Orders"),"manufacturing/search_work_orders.php?outstanding_only=1");
22
23                         $this->add_module(_("Inquiries and Reports"));
24                         //$this->add_lapp_function(1, _("Costed Bill Of Material Inquiry"),"manufacturing/inquiry/bom_cost_inquiry.php?");
25                         $this->add_lapp_function(1, _("Inventory Item Where Used &Inquiry"),"manufacturing/inquiry/where_used_inquiry.php?");
26                         $this->add_lapp_function(1, _("Work Order &Inquiry"),"manufacturing/search_work_orders.php?");
27                         $this->add_rapp_function(1, _("Manufacturing &Reports"),"reporting/reports_main.php?Class=3");
28
29                         $this->add_module(_("Maintenance"));
30                         $this->add_lapp_function(2, _("&Bills Of Material"),"manufacturing/manage/bom_edit.php?");
31                         $this->add_lapp_function(2, _("&Work Centres"),"manufacturing/manage/work_centres.php?");
32                         if (count($installed_modules) > 0)
33                         {
34                                 foreach ($installed_modules as $mod)
35                                 {
36                                         if ($mod["tab"] == "manuf")
37                                                 $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?");
38                                 }
39                         }
40                 }
41         }
42
43
44 ?>