diff --git a/web_pwa_customize/README.rst b/web_pwa_customize/README.rst new file mode 100644 index 00000000000..df67e32b79e --- /dev/null +++ b/web_pwa_customize/README.rst @@ -0,0 +1,100 @@ +================= +Web Pwa Customize +================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:4a63e846d259636f1c4cd9c622f602c5a66bf775ab189162f90c00b3e278c7af + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github + :target: https://github.com/OCA/web/tree/17.0/web_pwa_customize + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_pwa_customize + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to configure data for Progressive Web App: Short +name, Background color, Theme color and Icon. + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +The existing definitions in the old web_pwa_oca of 16.0 (not existing or +customizable in core) are maintained. + +Configuration +============= + +#. Go to Settings > General Settings. #. In the 'Progressive Web App' +section you can configure all the data. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa + +Contributors +------------ + +- `Tecnativa `__: + + - Víctor Martínez + - Pedro M. Baeza + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px + :target: https://github.com/victoralmau + :alt: victoralmau + +Current `maintainer `__: + +|maintainer-victoralmau| + +This module is part of the `OCA/web `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/web_pwa_customize/__init__.py b/web_pwa_customize/__init__.py new file mode 100644 index 00000000000..91c5580fed3 --- /dev/null +++ b/web_pwa_customize/__init__.py @@ -0,0 +1,2 @@ +from . import controllers +from . import models diff --git a/web_pwa_customize/__manifest__.py b/web_pwa_customize/__manifest__.py new file mode 100644 index 00000000000..42248c120fc --- /dev/null +++ b/web_pwa_customize/__manifest__.py @@ -0,0 +1,14 @@ +# Copyright 2024 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +{ + "name": "Web Pwa Customize", + "author": "Tecnativa, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/web", + "version": "17.0.1.0.0", + "depends": ["web"], + "license": "AGPL-3", + "category": "Website", + "installable": True, + "maintainers": ["victoralmau"], + "data": ["views/res_config_settings_views.xml"], +} diff --git a/web_pwa_customize/controllers/__init__.py b/web_pwa_customize/controllers/__init__.py new file mode 100644 index 00000000000..ca3774be4c9 --- /dev/null +++ b/web_pwa_customize/controllers/__init__.py @@ -0,0 +1 @@ +from . import webmanifest diff --git a/web_pwa_customize/controllers/webmanifest.py b/web_pwa_customize/controllers/webmanifest.py new file mode 100644 index 00000000000..7b2f1aa0dfc --- /dev/null +++ b/web_pwa_customize/controllers/webmanifest.py @@ -0,0 +1,71 @@ +# Copyright 2024 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import json + +from odoo import http +from odoo.http import request +from odoo.tools import ustr + +from odoo.addons.web.controllers import webmanifest + + +class WebManifest(webmanifest.WebManifest): + def _get_pwa_manifest_icons(self, pwa_icon): + icons = [] + if not pwa_icon.mimetype.startswith("image/svg"): + all_icons = ( + request.env["ir.attachment"] + .sudo() + .search( + [ + ("url", "like", "/web_pwa_customize/icon"), + ( + "url", + "not like", + "/web_pwa_customize/icon.", + ), # Get only resized icons + ] + ) + ) + for icon in all_icons: + icon_size_name = icon.url.split("/")[-1].lstrip("icon").split(".")[0] + icons.append( + {"src": icon.url, "sizes": icon_size_name, "type": icon.mimetype} + ) + else: + icons = [ + { + "src": pwa_icon.url, + "sizes": "128x128 144x144 152x152 192x192 256x256 512x512", + "type": pwa_icon.mimetype, + } + ] + return icons + + @http.route( + "/web/manifest.webmanifest", type="http", auth="public", methods=["GET"] + ) + def webmanifest(self): + """Call super and overwrite the values that we want.""" + res = super().webmanifest() + manifest = json.loads(res.response[0]) + icp = request.env["ir.config_parameter"].sudo() + manifest["short_name"] = icp.get_param("pwa.manifest.short_name", "Odoo") + manifest["background_color"] = icp.get_param( + "pwa.manifest.background_color", "#714B67" + ) + manifest["theme_color"] = icp.get_param("pwa.manifest.theme_color", "#714B67") + pwa_icon = ( + request.env["ir.attachment"] + .sudo() + .search([("url", "like", "/web_pwa_customize/icon.")]) + ) + if pwa_icon: + manifest["icons"] = self._get_pwa_manifest_icons(pwa_icon) + body = json.dumps(manifest, default=ustr) + return request.make_response( + body, + [ + ("Content-Type", "application/manifest+json"), + ], + ) diff --git a/web_pwa_customize/i18n/es.po b/web_pwa_customize/i18n/es.po new file mode 100644 index 00000000000..86891801202 --- /dev/null +++ b/web_pwa_customize/i18n/es.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_pwa_customize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-08 16:57+0000\n" +"PO-Revision-Date: 2024-11-08 16:57+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Background Color" +msgstr "Color de fondo" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Theme Color" +msgstr "Color del tema" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_background_color +msgid "Background Color" +msgstr "Color de fondo" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Colors" +msgstr "Colores" + +#. module: web_pwa_customize +#: model:ir.model,name:web_pwa_customize.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_icon +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Icon" +msgstr "Icono" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Odoo" +msgstr "Odoo" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_theme_color +msgid "Theme Color" +msgstr "Color del tema" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_short_name +msgid "Web App Short Name" +msgstr "Nombre corto de la aplicación" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +#, python-format +msgid "You can only upload PNG files bigger than 512x512" +msgstr "Solo puede cargar archivos PNG de más de 512 x 512" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +#, python-format +msgid "You can only upload SVG or PNG files. Found: %s." +msgstr "Solo puedes cargar archivos SVG o PNG. Encontrado: %s." + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +#, python-format +msgid "You can't upload a file with more than 2 MB." +msgstr "No puede cargar un archivo con más de 2 MB." diff --git a/web_pwa_customize/i18n/web_pwa_customize.pot b/web_pwa_customize/i18n/web_pwa_customize.pot new file mode 100644 index 00000000000..1c5d9d43133 --- /dev/null +++ b/web_pwa_customize/i18n/web_pwa_customize.pot @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_pwa_customize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-08 16:56+0000\n" +"PO-Revision-Date: 2024-11-08 16:56+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Background Color" +msgstr "" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Theme Color" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_background_color +msgid "Background Color" +msgstr "" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Colors" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model,name:web_pwa_customize.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_icon +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Icon" +msgstr "" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Odoo" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_theme_color +msgid "Theme Color" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_short_name +msgid "Web App Short Name" +msgstr "" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +#, python-format +msgid "You can only upload PNG files bigger than 512x512" +msgstr "" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +#, python-format +msgid "You can only upload SVG or PNG files. Found: %s." +msgstr "" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +#, python-format +msgid "You can't upload a file with more than 2 MB." +msgstr "" diff --git a/web_pwa_customize/models/__init__.py b/web_pwa_customize/models/__init__.py new file mode 100644 index 00000000000..0deb68c4680 --- /dev/null +++ b/web_pwa_customize/models/__init__.py @@ -0,0 +1 @@ +from . import res_config_settings diff --git a/web_pwa_customize/models/res_config_settings.py b/web_pwa_customize/models/res_config_settings.py new file mode 100644 index 00000000000..2f4226dcbd5 --- /dev/null +++ b/web_pwa_customize/models/res_config_settings.py @@ -0,0 +1,136 @@ +# Copyright 2024 Tecnativa - Víctor Martínez +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). +import base64 +import io +import sys + +from PIL import Image + +from odoo import _, api, exceptions, fields, models +from odoo.tools.mimetypes import guess_mimetype + + +class ResConfigSettings(models.TransientModel): + _inherit = "res.config.settings" + _pwa_icon_url_base = "/web_pwa_customize/icon" + + pwa_short_name = fields.Char( + "Web App Short Name", + config_parameter="pwa.manifest.short_name", + ) + pwa_icon = fields.Binary("Icon", readonly=False) + pwa_background_color = fields.Char( + "Background Color", config_parameter="pwa.manifest.background_color" + ) + pwa_theme_color = fields.Char( + "Theme Color", config_parameter="pwa.manifest.theme_color" + ) + + @api.model + def get_values(self): + res = super().get_values() + pwa_icon_attachment = ( + self.env["ir.attachment"] + .sudo() + .search([("url", "like", self._pwa_icon_url_base + ".")]) + ) + res["pwa_icon"] = pwa_icon_attachment.datas if pwa_icon_attachment else False + return res + + @api.model + def default_get(self, fields): + res = super().default_get(fields) + for f_name in ["pwa_background_color", "pwa_theme_color"]: + if f_name in fields and not res.get(f_name): + res[f_name] = "#714B67" + return res + + def _unpack_icon(self, icon): + # Wrap decoded_icon in BytesIO object + decoded_icon = base64.b64decode(icon) + icon_bytes = io.BytesIO(decoded_icon) + return Image.open(icon_bytes) + + def _write_icon_to_attachment(self, extension, mimetype, size=None): + url = self._pwa_icon_url_base + extension + icon = self.pwa_icon + # Resize image + if size: + image = self._unpack_icon(icon) + resized_image = image.resize(size) + icon_bytes_output = io.BytesIO() + resized_image.save(icon_bytes_output, format=extension.lstrip(".").upper()) + icon = base64.b64encode(icon_bytes_output.getvalue()) + url = f"{self._pwa_icon_url_base}{str(size[0])}x{str(size[1])}{extension}" + # Retreive existing attachment + attachment_model = self.env["ir.attachment"].sudo() + attachment = attachment_model.search([("url", "like", url)]) + # Write values to ir_attachment + values = { + "datas": icon, + "db_datas": icon, + "url": url, + "name": url, + "type": "binary", + "mimetype": mimetype, + } + # Rewrite if exists, else create + if attachment: + attachment.sudo().write(values) + else: + attachment_model.create(values) + + @api.model + def set_values(self): + res = super().set_values() + # Retrieve previous value for pwa_icon from ir_attachment + pwa_icon_ir_attachments = ( + self.env["ir.attachment"] + .sudo() + .search([("url", "like", self._pwa_icon_url_base)]) + ) + # Delete or ignore if no icon provided + if not self.pwa_icon: + if pwa_icon_ir_attachments: + pwa_icon_ir_attachments.unlink() + return res + # Fail if icon provided is larger than 2mb + if sys.getsizeof(self.pwa_icon) > 2196608: + raise exceptions.UserError( + _("You can't upload a file with more than 2 MB.") + ) + # Confirm if the pwa_icon binary content is an SVG or PNG + # and process accordingly + decoded_pwa_icon = base64.b64decode(self.pwa_icon) + # Full mimetype detection + pwa_icon_mimetype = guess_mimetype(decoded_pwa_icon) + pwa_icon_extension = "." + pwa_icon_mimetype.split("/")[-1].split("+")[0] + if not pwa_icon_mimetype.startswith( + "image/svg" + ) and not pwa_icon_mimetype.startswith("image/png"): + raise exceptions.UserError( + _("You can only upload SVG or PNG files. Found: %s.") + % pwa_icon_mimetype + ) + # Delete all previous records if we are writting new ones + if pwa_icon_ir_attachments: + pwa_icon_ir_attachments.unlink() + self._write_icon_to_attachment(pwa_icon_extension, pwa_icon_mimetype) + # write multiple sizes if not SVG + if pwa_icon_extension != ".svg": + # Fail if provided PNG is smaller than 512x512 + if self._unpack_icon(self.pwa_icon).size < (512, 512): + raise exceptions.UserError( + _("You can only upload PNG files bigger than 512x512") + ) + for size in [ + (128, 128), + (144, 144), + (152, 152), + (192, 192), + (256, 256), + (512, 512), + ]: + self._write_icon_to_attachment( + pwa_icon_extension, pwa_icon_mimetype, size=size + ) diff --git a/web_pwa_customize/pyproject.toml b/web_pwa_customize/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/web_pwa_customize/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/web_pwa_customize/readme/CONFIGURE.md b/web_pwa_customize/readme/CONFIGURE.md new file mode 100644 index 00000000000..0efc85e2c57 --- /dev/null +++ b/web_pwa_customize/readme/CONFIGURE.md @@ -0,0 +1,2 @@ +#. Go to Settings > General Settings. +#. In the 'Progressive Web App' section you can configure all the data. diff --git a/web_pwa_customize/readme/CONTEXT.md b/web_pwa_customize/readme/CONTEXT.md new file mode 100644 index 00000000000..6f4089074ca --- /dev/null +++ b/web_pwa_customize/readme/CONTEXT.md @@ -0,0 +1,2 @@ +The existing definitions in the old web_pwa_oca of 16.0 (not existing or customizable +in core) are maintained. diff --git a/web_pwa_customize/readme/CONTRIBUTORS.md b/web_pwa_customize/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..5fee3904270 --- /dev/null +++ b/web_pwa_customize/readme/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +- [Tecnativa](https://www.tecnativa.com): + - Víctor Martínez + - Pedro M. Baeza diff --git a/web_pwa_customize/readme/DESCRIPTION.md b/web_pwa_customize/readme/DESCRIPTION.md new file mode 100644 index 00000000000..d780ed50121 --- /dev/null +++ b/web_pwa_customize/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module allows to configure data for Progressive Web App: Short name, Background color, Theme color and Icon. diff --git a/web_pwa_customize/static/description/icon.png b/web_pwa_customize/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/web_pwa_customize/static/description/icon.png differ diff --git a/web_pwa_customize/static/description/index.html b/web_pwa_customize/static/description/index.html new file mode 100644 index 00000000000..130c40d0190 --- /dev/null +++ b/web_pwa_customize/static/description/index.html @@ -0,0 +1,442 @@ + + + + + +Web Pwa Customize + + + +
+

Web Pwa Customize

+ + +

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runboat

+

This module allows to configure data for Progressive Web App: Short +name, Background color, Theme color and Icon.

+

Table of contents

+ +
+

Use Cases / Context

+

The existing definitions in the old web_pwa_oca of 16.0 (not existing or +customizable in core) are maintained.

+
+
+

Configuration

+

#. Go to Settings > General Settings. #. In the ‘Progressive Web App’ +section you can configure all the data.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+
    +
  • Tecnativa:
      +
    • Víctor Martínez
    • +
    • Pedro M. Baeza
    • +
    +
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

victoralmau

+

This module is part of the OCA/web project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/web_pwa_customize/tests/__init__.py b/web_pwa_customize/tests/__init__.py new file mode 100644 index 00000000000..b94650f769f --- /dev/null +++ b/web_pwa_customize/tests/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2021 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_web_pwa_customize diff --git a/web_pwa_customize/tests/test_web_pwa_customize.py b/web_pwa_customize/tests/test_web_pwa_customize.py new file mode 100644 index 00000000000..5d6935a2119 --- /dev/null +++ b/web_pwa_customize/tests/test_web_pwa_customize.py @@ -0,0 +1,26 @@ +# Copyright 2024 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import tagged + +from odoo.addons.base.tests.common import HttpCaseWithUserDemo + + +@tagged("-at_install", "post_install") +class TestWebPwaCustomize(HttpCaseWithUserDemo): + @classmethod + def setUpClass(cls): + super().setUpClass() + icp = cls.env["ir.config_parameter"].sudo() + icp.set_param("pwa.manifest.short_name", "SHORT-NAME") + icp.set_param("pwa.manifest.background_color", "#2E69B5") + icp.set_param("pwa.manifest.theme_color", "#2E69B4") + + def test_webmanifest_customize(self): + response = self.url_open("/web/manifest.webmanifest") + self.assertEqual(response.status_code, 200) + self.assertEqual(response.headers["Content-Type"], "application/manifest+json") + data = response.json() + self.assertEqual(data["short_name"], "SHORT-NAME") + self.assertEqual(data["background_color"], "#2E69B5") + self.assertEqual(data["theme_color"], "#2E69B4") diff --git a/web_pwa_customize/views/res_config_settings_views.xml b/web_pwa_customize/views/res_config_settings_views.xml new file mode 100644 index 00000000000..44e0f27e1e3 --- /dev/null +++ b/web_pwa_customize/views/res_config_settings_views.xml @@ -0,0 +1,38 @@ + + + + res.config.settings.view.form.pwa + res.config.settings + + + + + + + +
+ Background Color + +
+
+ Theme Color + +
+
+ +
+ +
+
+
+
+
+