forked from OCA/account-fiscal-rule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
36 lines (36 loc) · 1.08 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
36
{
"name": "Avatax Exemptions",
"version": "14.0.3.0.1",
"category": "Sales",
"summary": """
This application allows you to add exemptions to Avatax
""",
"website": "https://github.com/OCA/account-fiscal-rule",
"author": "Sodexis, Odoo Community Association (OCA)",
"license": "AGPL-3",
"depends": [
"website",
"product",
"queue_job",
"account_avatax_sale_oca",
"account_avatax_exemption_base",
],
"data": [
"security/ir.model.access.csv",
"data/cron.xml",
"data/queue.xml",
"data/ir_sequence_data.xml",
"views/avalara_salestax_view.xml",
"views/avalara_exemption_view.xml",
"views/product_view.xml",
"views/exemption_template_views.xml",
"views/res_country_state_view.xml",
"views/website_layout.xml",
"views/website_exemption_tree.xml",
"views/website_exemption_form.xml",
"views/partner_view.xml",
],
"external_dependencies": {"python": ["Avalara"]},
"installable": True,
"application": True,
}