-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
__manifest__.py
28 lines (28 loc) · 1.01 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
# Copyright 2020 Tecnativa - Carlos Dauden
# Copyright 2020 Tecnativa - Sergio Teruel
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Agreement Rebate",
"summary": "Rebate in agreements",
"version": "15.0.1.1.2",
"development_status": "Beta",
"category": "Agreement",
"website": "https://github.com/OCA/agreement",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": ["account", "account_invoice_refund_link", "agreement"],
"data": [
"data/agreement_rebate_data.xml",
"security/agreement_rebate_security.xml",
"security/ir.model.access.csv",
"views/agreement_condition_view.xml",
"views/agreement_view.xml",
"views/agreement_rebate_settlement_view.xml",
"views/agreement_type.xml",
"wizards/invoice_create_views.xml",
"wizards/settlement_create_views.xml",
"views/agreement_menu_view.xml",
],
}