From 688b273e14711d9f83698af5b3bb0fa4c00cba80 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Mon, 4 Jan 2021 11:09:46 -0600 Subject: [PATCH 1/2] [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 40bf0885cbd29d82719dcdd39f9f7979c7e11982 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Wed, 31 Mar 2021 13:00:50 -0500 Subject: [PATCH 2/2] [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',