forked from OCA/l10n-italy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
31 lines (30 loc) · 994 Bytes
/
__manifest__.py
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
27
28
29
30
31
# Copyright 2019-2023 Openforce Srls Unipersonale (www.openforce.it)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
{
"name": "ITA - Gestione cespiti - Importazione storico",
"version": "14.0.1.0.0",
"category": "Accounting",
"summary": "Cespiti: importazione storico dati",
"author": "Openforce, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-italy",
"license": "AGPL-3",
"external_dependencies": {
"python": [
"xlrd", # Already in Odoo requirements, but let's be sure
"xlsxwriter",
],
},
"depends": [
"assets_management",
],
"data": [
"security/ir.model.access.csv",
"views/asset.xml",
"views/asset_category.xml",
"views/asset_depreciation_mode.xml",
"views/asset_depreciation_type.xml",
"wizards/asset_history_import.xml",
],
"installable": True,
"post_init_hook": "set_import_codes",
}