-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy path__manifest__.py
26 lines (26 loc) · 979 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
# Copyright 2021 Tecnativa - David Vidal
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Sale Loyalty Suggestions",
"summary": "Suggest promotions in the sale order line",
"version": "16.0.1.0.2",
"development_status": "Production/Stable",
"category": "Sale",
"website": "https://github.com/OCA/sale-promotion",
"author": "Tecnativa, Odoo Community Association (OCA)",
"maintainers": ["chienandalu"],
"license": "AGPL-3",
"depends": ["sale_loyalty", "sale_loyalty_initial_date_validity"],
"data": [
"security/ir.model.access.csv",
"views/sale_order_views.xml",
"wizard/sale_loyalty_reward_wizard_views.xml",
],
"assets": {
"web.assets_backend": [
"/sale_loyalty_order_suggestion/static/src/js/suggest_promotion_widget.esm.js",
"/sale_loyalty_order_suggestion/static/src/xml/suggest_promotion.xml",
],
},
"installable": True,
}