2f7d8eb6e5fcafed4c202f7e7eb989ebd4a3fa1f
[fa-stable.git] / applications / inventory.php
1 <?php\r
2 \r
3         class inventory_app extends application \r
4         {\r
5                 function inventory_app() \r
6                 {\r
7                         $this->application("stock",_("Items and Inventory"));\r
8 \r
9                         $this->add_module(_("Transactions"));\r
10                         $this->add_lapp_function(0, _("Inventory Location Transfers"),"inventory/transfers.php?NewTransfer=1");\r
11                         $this->add_lapp_function(0, _("Inventory Adjustments"),"inventory/adjustments.php?NewAdjustment=1");\r
12 \r
13                         $this->add_module(_("Inquiries and Reports"));\r
14                         $this->add_lapp_function(1, _("Inventory Item Movements"),"inventory/inquiry/stock_movements.php?");\r
15                         $this->add_lapp_function(1, _("Inventory Item Status"),"inventory/inquiry/stock_status.php?");\r
16                         $this->add_rapp_function(1, _("Inventory Reports"),"reporting/reports_main.php?Class=2");\r
17 \r
18                         $this->add_module(_("Maintenance"));\r
19                         $this->add_lapp_function(2, _("Items"),"inventory/manage/items.php?");\r
20                         $this->add_lapp_function(2, _("Item Categories"),"inventory/manage/item_categories.php?");\r
21                         $this->add_lapp_function(2, _("Inventory Locations"),"inventory/manage/locations.php?");\r
22                         $this->add_rapp_function(2, _("Inventory Movement Types"),"inventory/manage/movement_types.php?");\r
23                         $this->add_rapp_function(2, _("Item Tax Types"),"taxes/item_tax_types.php?");\r
24                         $this->add_rapp_function(2, "","");\r
25                         $this->add_rapp_function(2, _("Reorder Levels"),"inventory/reorder_level.php?");\r
26 \r
27                         $this->add_module(_("Pricing and Costs"));\r
28                         $this->add_lapp_function(3, _("Sales Pricing"),"inventory/prices.php?");\r
29                         $this->add_lapp_function(3, _("Purchasing Pricing"),"inventory/purchasing_data.php?");\r
30                         $this->add_rapp_function(3, _("Standard Costs"),"inventory/cost_update.php?");\r
31                 }\r
32         }\r
33 \r
34 \r
35 ?>