[REL] OpenERP 6.1.1
[odoo/odoo.git] / addons / account_asset / __openerp__.py
old mode 100755 (executable)
new mode 100644 (file)
index cf78871..f26a8ad
@@ -1,6 +1,6 @@
 # -*- encoding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
 #
 #    GNU Affero General Public License for more details.
 #
 #    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
 {
-    "name" : "Asset management",
+    "name" : "Assets Management",
     "version" : "1.0",
     "depends" : ["account"],
-    "author" : "Tiny",
+    "author" : "OpenERP S.A.",
     "description": """Financial and accounting asset management.
-    This Module manages the assets owned by a company or an individual. It will keep track of depreciation's occurred on 
+    This Module manages the assets owned by a company or an individual. It will keep track of depreciation's occurred on
     those assets. And it allows to create Move's of the depreciation lines.
     """,
     "website" : "http://www.openerp.com",
-    "category" : "Generic Modules/Accounting",
+    "category" : "Accounting & Finance",
+    "sequence": 32,
     "init_xml" : [
     ],
-    "demo_xml" : [
+    "demo_xml" : [ 'account_asset_demo.xml'
+    ],
+    'test': [
+        'test/account_asset_demo.yml',
+        'test/account_asset.yml',
+        'test/account_asset_wizard.yml',
     ],
-    'test': ['test/account_asset.yml',
-             ],
     "update_xml" : [
         "security/account_asset_security.xml",
         "security/ir.model.access.csv",
-        "account_asset_wizard.xml",
         "wizard/account_asset_change_duration_view.xml",
         "wizard/wizard_asset_compute_view.xml",
         "account_asset_view.xml",
         "account_asset_invoice_view.xml",
         "report/account_asset_report_view.xml",
-       
     ],
-    "active": False,
+    "auto_install": False,
     "installable": True,
+    "application": True,
 }
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: