Added support for multily selection in combo_input lists.
[fa-stable.git] / includes / types.inc
index 86dd7d72c936a93b0f1997b86141b7d51cb90326..f9acce38cc845a187c0935d7c961f271c20777be 100644 (file)
@@ -100,6 +100,10 @@ $tabs = array('orders'=>_("Sales"),
                        'GL'=>_("Banking and General Ledger"),
                        'system'=>_("Setup"));
 
+include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
+include_once($path_to_root . "/purchasing/includes/purchasing_db.inc");
+include_once($path_to_root . "/sales/includes/sales_db.inc");
+include_once($path_to_root . "/dimensions/includes/dimensions_db.inc");
 //----------------------------------------------------------------------------------
 //     Payment types
 //
@@ -277,4 +281,14 @@ $stock_types = array(
                'D' => _("Service")
 );
 
+//----------------------------------------------------------------------------------
+
+define('TAG_ACCOUNT',   1);
+define('TAG_DIMENSION', 2);
+
+$tag_types = array (
+               TAG_ACCOUNT   => _("Account"),
+               TAG_DIMENSION => _("Dimension")
+);
+
 ?>
\ No newline at end of file