-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] website_sale_coupon_selection_wizard: Migration to version 16.0
TT44379
- Loading branch information
1 parent
d11817a
commit 39e3048
Showing
16 changed files
with
533 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
# Copyright 2021 Tecnativa - David Vidal | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "Coupons Selection for eCommerce", | ||
"summary": "Allows to apply and configure promotions directly from the website", | ||
"version": "15.0.1.0.0", | ||
"name": "Loyalty Selection for eCommerce", | ||
"summary": "Suggests promotions and allows you to configure and apply these " | ||
"promotions directly from the website", | ||
"version": "16.0.1.0.0", | ||
"development_status": "Beta", | ||
"category": "eCommerce", | ||
"website": "https://github.com/OCA/sale-promotion", | ||
"author": "Tecnativa, Odoo Community Association (OCA)", | ||
"maintainers": ["chienandalu"], | ||
"license": "AGPL-3", | ||
"depends": [ | ||
"sale_coupon_selection_wizard", | ||
"sale_coupon_order_suggestion", | ||
"website_sale_coupon_page", | ||
"sale_loyalty", | ||
"sale_loyalty_order_suggestion", | ||
"website_sale_loyalty_page", | ||
], | ||
"data": ["templates/promotion_templates.xml"], | ||
"data": ["templates/promotion_templates.xml", "templates/wizard_templates.xml"], | ||
"assets": { | ||
"web.assets_frontend": [ | ||
"/website_sale_coupon_selection_wizard/static/src/scss/" | ||
"website_sale_coupon_selection.scss", | ||
"/sale_coupon_selection_wizard/static/src/js/" | ||
"coupon_selection_wizard_mixin.js", | ||
"/website_sale_coupon_selection_wizard/static/src/js/" | ||
"website_sale_coupon_selection_wizard.js", | ||
"/website_sale_coupon_selection_wizard/static/src/js/*", | ||
] | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from . import coupon_page | ||
from . import promotion_page | ||
from . import main | ||
from . import promotion_wizard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
* `Tecnativa <https://www.tecnativa.com>`_: | ||
|
||
* David Vidal | ||
* Pilar Vargas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
This module allows to apply multi-gift mult-criteria promotion with a fancy wizard on | ||
the eCommerce. | ||
This module makes suggestions for promotions whose rules include a product added to the | ||
cart. It also allows you to configure and apply these promotions with an elegant eCommerce | ||
wizard. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.