Fixed newlines in js submit dialogs.
[fa-stable.git] / includes / types.inc
index 6039829edda9d1d5c8886c5032911fbdbd5e2726..94d1f80c35441c7da80436e5e049f9bd7d33a588 100644 (file)
@@ -31,6 +31,7 @@ $systypes_array = array (
                     28=> array ('name' => _("Work Order Issue")),
                     29=> array ('name' => _("Work Order Production")),
                     30=> array ('name' => _("Sales Order")),
+                    32=> array ('name' => _("Sales Quotations")),
                     35=> array ('name' => _("Cost Update")),
                     40=> array ('name' => _("Dimension"))
                                        );
@@ -97,6 +98,11 @@ class systypes
                return 30;
        }
 
+       function sales_quotation() 
+       {
+               return 32;
+       }
+
        function cost_update() 
        {
                return 35;
@@ -146,6 +152,11 @@ class bank_account_types
                return $bank_account_types_array[$index]['ptype'];
        }
 }
+
+/* Menu tabs */
+$tabs = array('orders'=>_("Sales"), 'AP'=>_("Purchases"), 'stock'=>_("Items and Inventory"), 'manuf'=>_("Manufacturing"), 
+       'proj'=>_("Dimensions"), 'GL'=>_("Banking and General Ledger"), 'system'=>_("Setup"));
+
 //----------------------------------------------------------------------------------
 
 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");