-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
__manifest__.py
30 lines (29 loc) · 1.05 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
# © 2014-2021 Barroux Abbey (http://www.barroux.org)
# © 2014-2021 Akretion France (Alexis de Lattre <alexis.delattre@akretion.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Donation Base",
"version": "16.0.2.0.0",
"category": "Accounting",
"license": "AGPL-3",
"summary": "Base module for donations",
"author": "Barroux Abbey, Akretion, Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"website": "https://github.com/OCA/donation",
"depends": ["account"],
"data": [
"security/ir.model.access.csv",
"security/tax_receipt_security.xml",
"report/report.xml",
"views/product.xml",
"views/res_partner.xml",
"views/donation_tax_receipt.xml",
"wizard/tax_receipt_annual_create_view.xml",
"wizard/tax_receipt_print_view.xml",
"report/report_donationtax.xml",
"data/donation_tax_seq.xml",
"data/donation_mail_template.xml",
],
"demo": ["demo/donation_demo.xml"],
"installable": True,
}