From d3f7afd9446f0f386e8d295276bd211cc8b63428 Mon Sep 17 00:00:00 2001
From: Anas Assi <76017357+anasassi119@users.noreply.github.com>
Date: Sat, 26 Oct 2024 03:49:07 +0200
Subject: [PATCH 1/3] Update res_config_settings_views.xml
Fixed the Odoo Server Error Bug when installing the module.
---
remove_odoo_enterprise/views/res_config_settings_views.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/remove_odoo_enterprise/views/res_config_settings_views.xml b/remove_odoo_enterprise/views/res_config_settings_views.xml
index 2839782..f860f35 100644
--- a/remove_odoo_enterprise/views/res_config_settings_views.xml
+++ b/remove_odoo_enterprise/views/res_config_settings_views.xml
@@ -4,7 +4,7 @@
res.config.settings
-
+
1
From a40065cb724a76f1575f36346fa3aebc09e566ce Mon Sep 17 00:00:00 2001
From: Anas Assi <76017357+anasassi119@users.noreply.github.com>
Date: Sat, 26 Oct 2024 03:51:36 +0200
Subject: [PATCH 2/3] Update __manifest__.py
---
remove_odoo_enterprise/__manifest__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/remove_odoo_enterprise/__manifest__.py b/remove_odoo_enterprise/__manifest__.py
index fc30b89..16ba5ad 100644
--- a/remove_odoo_enterprise/__manifest__.py
+++ b/remove_odoo_enterprise/__manifest__.py
@@ -3,7 +3,7 @@
{
"name": "Remove Odoo Enterprise",
"summary": "Remove enterprise modules and setting items",
- "version": "17.0.1.0.0",
+ "version": "17.0.1.0.1",
"category": "Maintenance",
"author": "Eska, Onestein, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/server-brand",
From 168a6c80d88929999ee81b2d771bae1e8b04f96f Mon Sep 17 00:00:00 2001
From: Anas Assi <76017357+anasassi119@users.noreply.github.com>
Date: Sat, 26 Oct 2024 04:15:22 +0200
Subject: [PATCH 3/3] Update test_remove_odoo_enterprise.py
---
remove_odoo_enterprise/tests/test_remove_odoo_enterprise.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/remove_odoo_enterprise/tests/test_remove_odoo_enterprise.py b/remove_odoo_enterprise/tests/test_remove_odoo_enterprise.py
index 68f9b6e..048e352 100644
--- a/remove_odoo_enterprise/tests/test_remove_odoo_enterprise.py
+++ b/remove_odoo_enterprise/tests/test_remove_odoo_enterprise.py
@@ -34,7 +34,7 @@ def test_appstore_invisible(self):
view = conf.get_views([[False, "form"]])["views"]["form"]
doc = etree.XML(view["arch"])
- query = "//setting[@id='appstore']"
+ query = "//setting[field[@widget='upgrade_boolean']]"
for item in doc.xpath(query):
self.assertTrue(item.attrib["invisible"])