1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- encoding: utf-8 -*-
{
"name" : "Asset management",
"version" : "1.0",
"depends" : ["account", "account_simulation"],
"author" : "Tiny",
"description": """Financial and accounting asset management.""",
"website" : "http://tinyerp.com/module_account.html",
"category" : "Generic Modules/Accounting",
"init_xml" : [
],
"demo_xml" : [
],
"update_xml" : [
"account_asset_wizard.xml",
"account_asset_view.xml",
"account_asset_invoice_view.xml"
],
# "translations" : {
# "fr": "i18n/french_fr.csv"
# },
"active": False,
"installable": True
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|