forked from OCA/account-fiscal-rule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
35 lines (34 loc) · 1.36 KB
/
__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
32
33
34
35
# Copyright (C) 2014-Today GRAP (http://www.grap.coop)
# Copyright (C) 2016-Today La Louve (<http://www.lalouve.net/>)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Account Product - Fiscal Classification",
"summary": "Simplify taxes management for products",
"version": "14.0.1.0.1",
"category": "Accounting",
"author": "Akretion,GRAP,La Louve,Odoo Community Association (OCA)",
"maintainers": ["legalsylvain"],
"website": "https://github.com/OCA/account-fiscal-rule",
"license": "AGPL-3",
"depends": ["account", "account_menu"],
"data": [
"security/ir_rule.xml",
"security/ir.model.access.csv",
"views/view_product_template.xml",
"wizard/view_wizard_change_fiscal_classification.xml",
"views/view_product_category.xml",
"views/view_account_product_fiscal_classification.xml",
"views/view_account_product_fiscal_classification_template.xml",
],
"demo": [
"demo/res_company.xml",
"demo/account_tax.xml",
"demo/account_product_fiscal_classification.xml",
"demo/product_template.xml",
"demo/product_category.xml",
"demo/res_groups.xml",
],
"post_init_hook": "create_fiscal_classification_from_product_template",
"installable": True,
}