From 42177b4a83e13e2c420e9b58e5bdc0a6e32c4d80 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Mon, 4 Jan 2021 11:09:46 -0600 Subject: [PATCH 1/3] [ADD] sale_exception_website: display sale exceptions and prevent purchase H4721 --- sale_exception_website/__init__.py | 0 sale_exception_website/__manifest__.py | 22 ++++++++++ .../views/website_templates.xml | 40 +++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 sale_exception_website/__init__.py create mode 100644 sale_exception_website/__manifest__.py create mode 100644 sale_exception_website/views/website_templates.xml diff --git a/sale_exception_website/__init__.py b/sale_exception_website/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/sale_exception_website/__manifest__.py b/sale_exception_website/__manifest__.py new file mode 100644 index 00000000..93730a42 --- /dev/null +++ b/sale_exception_website/__manifest__.py @@ -0,0 +1,22 @@ +{ + 'name': 'Sale Exception Website', + 'summary': 'Display sale exceptions on eCommerce site', + 'version': '13.0.1.0.0', + 'author': "Hibou Corp.", + 'category': 'Sale', + 'license': 'AGPL-3', + 'website': "https://hibou.io", + 'description': """ +Display sale exceptions on eCommerce site and prevent purchases +""", + 'depends': [ + 'sale_exception_portal', + 'website_sale', + ], + 'demo': [], + 'data': [ + 'views/website_templates.xml', + ], + 'auto_install': False, + 'installable': True, +} diff --git a/sale_exception_website/views/website_templates.xml b/sale_exception_website/views/website_templates.xml new file mode 100644 index 00000000..efe369b6 --- /dev/null +++ b/sale_exception_website/views/website_templates.xml @@ -0,0 +1,40 @@ + + + + + + From eb1e88da431243283c989d044837d4cbe8d35223 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Wed, 31 Mar 2021 13:00:50 -0500 Subject: [PATCH 2/3] [MIG] sale_exception_website: migrate to 14.0 H5655 --- sale_exception_website/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sale_exception_website/__manifest__.py b/sale_exception_website/__manifest__.py index 93730a42..04c3a598 100644 --- a/sale_exception_website/__manifest__.py +++ b/sale_exception_website/__manifest__.py @@ -1,7 +1,7 @@ { 'name': 'Sale Exception Website', 'summary': 'Display sale exceptions on eCommerce site', - 'version': '13.0.1.0.0', + 'version': '14.0.1.0.0', 'author': "Hibou Corp.", 'category': 'Sale', 'license': 'AGPL-3', From af211c112b6da8feeb7ff86558f3ef73bd594fd4 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Sun, 16 Jan 2022 23:56:01 -0600 Subject: [PATCH 3/3] [MIG] sale_exception_website: bump version --- sale_exception_website/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sale_exception_website/__manifest__.py b/sale_exception_website/__manifest__.py index 04c3a598..2022defe 100644 --- a/sale_exception_website/__manifest__.py +++ b/sale_exception_website/__manifest__.py @@ -1,7 +1,7 @@ { 'name': 'Sale Exception Website', 'summary': 'Display sale exceptions on eCommerce site', - 'version': '14.0.1.0.0', + 'version': '15.0.1.0.0', 'author': "Hibou Corp.", 'category': 'Sale', 'license': 'AGPL-3',