diff --git a/customize_settings/README.rst b/customize_settings/README.rst deleted file mode 100644 index fb0d950ef..000000000 --- a/customize_settings/README.rst +++ /dev/null @@ -1,54 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -=================== -Odoo Debranding V16 -=================== - -Debranding of odoo with the given configurations under Website Admin -> Debranding Configurations. -Will replace: - - - Page Title - - Login Page Modification - - User Drop down Odoo links - - POS Odoo logo replaced by company logo - - Odoo Database Selector Logo, Labels - -Installation -============ -- www.odoo.com/documentation/14.0/setup/install.html -- Install our custom addon - -Company -------- -* `Cybrosys Techno Solutions `__ - -Credits -------- -* Developer: - V13 Atul Varma - V14 Sachin T - -Contacts --------- -* Mail Contact : odoo@cybrosys.com - -Bug Tracker ------------ -Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. - -Maintainer -========== -.. image:: https://cybrosys.com/images/logo.png - :target: https://cybrosys.com - -This module is maintained by Cybrosys Technologies. - -For support and more information, please visit `Our Website `__ - -Further information -=================== -HTML Description: ``__ - - diff --git a/customize_settings/__init__.py b/customize_settings/__init__.py deleted file mode 100644 index fed4aede5..000000000 --- a/customize_settings/__init__.py +++ /dev/null @@ -1,36 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2022-TODAY Cybrosys Technologies() -# -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (AGPL v3) along with this program. -# If not, see . -# -############################################################################# - -from . import controllers - -from odoo import api, SUPERUSER_ID - - -def _pre_init_odoo_bot(cr): - env = api.Environment(cr, SUPERUSER_ID, {}) - user = env.ref('base.user_root') - user.name = 'System User' - - -def uninstall_hook_odoo_bot(cr, registry): - env = api.Environment(cr, SUPERUSER_ID, {}) - user = env.ref('base.user_root') - user.name = 'OdooBot' diff --git a/customize_settings/__manifest__.py b/customize_settings/__manifest__.py deleted file mode 100644 index 7bc3edec6..000000000 --- a/customize_settings/__manifest__.py +++ /dev/null @@ -1,55 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2022-TODAY Cybrosys Technologies() -# -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (AGPL v3) along with this program. -# If not, see . -# -############################################################################# - -{ - 'name': "Odoo Debranding V16", - 'version': "16.0.1.0.0", - 'summary': """Odoo Backend and Frontend Debranding In V16""", - 'description': """Odoo Debrand, Odooo Debranding, Debrand, Debranding, Backend Debrand, Frontend Debranding, Odoo Backend and Frontend Debranding""", - 'live_test_url': 'https://www.youtube.com/watch?v=fYSPARjmYA4', - 'author': "Cybrosys Techno Solutions", - 'company': "Cybrosys Techno Solutions", - 'maintainer': "Cybrosys Techno Solutions", - 'website': "https://cybrosys.com/", - 'category': 'Tools', - 'depends': ['website', 'base_setup', 'base', 'web'], - 'data': [ - 'views/ir_module_views.xml', - ], - 'assets': { - 'web.assets_backend': [ - 'customize_settings/static/src/js/web_client.js', - 'customize_settings/static/src/xml/user_menu_items.xml', - 'customize_settings/static/src/js/error_dialogs.js', - 'customize_settings/static/src/js/dialogs.js' - ], - 'web.assets_frontend': [ - ] - }, - 'qweb': ["static/src/xml/base.xml"], - 'images': ['static/description/banner.jpg'], - 'license': "LGPL-3", - 'installable': True, - 'application': False, - 'auto_install': False, - 'pre_init_hook': '_pre_init_odoo_bot', - 'uninstall_hook': 'uninstall_hook_odoo_bot', -} diff --git a/customize_settings/controllers/__init__.py b/customize_settings/controllers/__init__.py deleted file mode 100644 index 222da1555..000000000 --- a/customize_settings/controllers/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2021-TODAY Cybrosys Technologies() -# -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. -# If not, see . -# -############################################################################# - -from . import database diff --git a/customize_settings/controllers/database.py b/customize_settings/controllers/database.py deleted file mode 100644 index 380cce6cc..000000000 --- a/customize_settings/controllers/database.py +++ /dev/null @@ -1,89 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2022-TODAY Cybrosys Technologies() -# -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. -# If not, see . -# -############################################################################# - -import odoo -from odoo import http -from odoo.http import request -from lxml import html -from odoo.addons.base.models.ir_qweb import render as qweb_render - -from odoo.addons.web.controllers.database import Database - -DBNAME_PATTERN = '^[a-zA-Z0-9][a-zA-Z0-9_.-]+$' - -from odoo.tools.misc import file_open - -db_monodb = odoo.tools.config['list_db'] - - -class Debrand(Database): - - def _render_template(self, **d): - website_name = 'Database' - dbname = request.db - uid = (request.session.uid if dbname else None) or odoo.SUPERUSER_ID - - try: - # create an empty registry - registry = odoo.modules.registry.Registry(dbname) - with registry.cursor() as cr: - - cr.execute("""SELECT c.name, c.write_date - FROM res_users u - LEFT JOIN res_company c - ON c.id = u.company_id - WHERE u.id = %s - """, (uid,)) - row = cr.fetchone() - website_name = row[0] - - except Exception: - pass - d.setdefault('manage', True) - d['insecure'] = odoo.tools.config.verify_admin_password('admin') - d['list_db'] = odoo.tools.config['list_db'] - d['langs'] = odoo.service.db.exp_list_lang() - d['countries'] = odoo.service.db.exp_list_countries() - d['pattern'] = DBNAME_PATTERN - - d['website_name'] = website_name - - # databases list - try: - d['databases'] = http.db_list() - d['incompatible_databases'] = odoo.service.db.list_db_incompatible(d['databases']) - except odoo.exceptions.AccessDenied: - d['databases'] = [request.db] if request.db else [] - - templates = {} - - with file_open("customize_settings/static/src/public/database_manager.qweb.html", "r") as fd: - templates['database_manager'] = fd.read() - with file_open("web/static/src/public/database_manager.master_input.qweb.html", "r") as fd: - templates['master_input'] = fd.read() - with file_open("web/static/src/public/database_manager.create_form.qweb.html", "r") as fd: - templates['create_form'] = fd.read() - - def load(template_name): - fromstring = html.document_fromstring if template_name == 'database_manager' else html.fragment_fromstring - return (fromstring(templates[template_name]), template_name) - - return qweb_render('database_manager', d, load) diff --git a/customize_settings/doc/RELEASE_NOTES.md b/customize_settings/doc/RELEASE_NOTES.md deleted file mode 100644 index 3cad08a37..000000000 --- a/customize_settings/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,6 +0,0 @@ -## Module - -#### 30.12.2022 -#### Version 16.0.1.0.0 -#### ADD -Initial Commit for customize_settings diff --git a/customize_settings/static/description/assets/icons/check.png b/customize_settings/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/customize_settings/static/description/assets/icons/check.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/chevron.png b/customize_settings/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/customize_settings/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/cogs.png b/customize_settings/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/customize_settings/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/consultation.png b/customize_settings/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/customize_settings/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/ecom-black.png b/customize_settings/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/customize_settings/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/education-black.png b/customize_settings/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/customize_settings/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/hotel-black.png b/customize_settings/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/customize_settings/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/license.png b/customize_settings/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/customize_settings/static/description/assets/icons/license.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/lifebuoy.png b/customize_settings/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/customize_settings/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/manufacturing-black.png b/customize_settings/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/customize_settings/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/pos-black.png b/customize_settings/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/customize_settings/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/puzzle.png b/customize_settings/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/customize_settings/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/restaurant-black.png b/customize_settings/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/customize_settings/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/service-black.png b/customize_settings/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/customize_settings/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/trading-black.png b/customize_settings/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/customize_settings/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/training.png b/customize_settings/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/customize_settings/static/description/assets/icons/training.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/update.png b/customize_settings/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/customize_settings/static/description/assets/icons/update.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/user.png b/customize_settings/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/customize_settings/static/description/assets/icons/user.png and /dev/null differ diff --git a/customize_settings/static/description/assets/icons/wrench.png b/customize_settings/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/customize_settings/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/categories.png b/customize_settings/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/customize_settings/static/description/assets/misc/categories.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/check-box.png b/customize_settings/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/customize_settings/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/compass.png b/customize_settings/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/customize_settings/static/description/assets/misc/compass.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/corporate.png b/customize_settings/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/customize_settings/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/customer-support.png b/customize_settings/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/customize_settings/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/cybrosys-logo.png b/customize_settings/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/customize_settings/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/features.png b/customize_settings/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/customize_settings/static/description/assets/misc/features.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/logo.png b/customize_settings/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/customize_settings/static/description/assets/misc/logo.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/pictures.png b/customize_settings/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/customize_settings/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/pie-chart.png b/customize_settings/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/customize_settings/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/right-arrow.png b/customize_settings/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/customize_settings/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/star.png b/customize_settings/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/customize_settings/static/description/assets/misc/star.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/support.png b/customize_settings/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/customize_settings/static/description/assets/misc/support.png and /dev/null differ diff --git a/customize_settings/static/description/assets/misc/whatsapp.png b/customize_settings/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/customize_settings/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/customize_settings/static/description/assets/modules/1.png b/customize_settings/static/description/assets/modules/1.png deleted file mode 100644 index 5238bdeab..000000000 Binary files a/customize_settings/static/description/assets/modules/1.png and /dev/null differ diff --git a/customize_settings/static/description/assets/modules/2.png b/customize_settings/static/description/assets/modules/2.png deleted file mode 100644 index 1ae7cfe3b..000000000 Binary files a/customize_settings/static/description/assets/modules/2.png and /dev/null differ diff --git a/customize_settings/static/description/assets/modules/3.png b/customize_settings/static/description/assets/modules/3.png deleted file mode 100644 index 3c3ff1afb..000000000 Binary files a/customize_settings/static/description/assets/modules/3.png and /dev/null differ diff --git a/customize_settings/static/description/assets/modules/4.png b/customize_settings/static/description/assets/modules/4.png deleted file mode 100644 index 3fae4631e..000000000 Binary files a/customize_settings/static/description/assets/modules/4.png and /dev/null differ diff --git a/customize_settings/static/description/assets/modules/5.gif b/customize_settings/static/description/assets/modules/5.gif deleted file mode 100644 index 2a5f8e659..000000000 Binary files a/customize_settings/static/description/assets/modules/5.gif and /dev/null differ diff --git a/customize_settings/static/description/assets/modules/6.png b/customize_settings/static/description/assets/modules/6.png deleted file mode 100644 index 7f2815273..000000000 Binary files a/customize_settings/static/description/assets/modules/6.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/hero.gif b/customize_settings/static/description/assets/screenshots/hero.gif deleted file mode 100644 index 03c8d490e..000000000 Binary files a/customize_settings/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/hero.png b/customize_settings/static/description/assets/screenshots/hero.png deleted file mode 100644 index 38b4b48b6..000000000 Binary files a/customize_settings/static/description/assets/screenshots/hero.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-1.png b/customize_settings/static/description/assets/screenshots/screenshot-1.png deleted file mode 100644 index a4d0bce06..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-1.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-10.png b/customize_settings/static/description/assets/screenshots/screenshot-10.png deleted file mode 100644 index a899adbf0..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-10.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-11.png b/customize_settings/static/description/assets/screenshots/screenshot-11.png deleted file mode 100644 index 729b5d78f..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-11.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-12.png b/customize_settings/static/description/assets/screenshots/screenshot-12.png deleted file mode 100644 index 72d3d0dfb..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-12.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-13.png b/customize_settings/static/description/assets/screenshots/screenshot-13.png deleted file mode 100644 index ab441e907..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-13.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-14.png b/customize_settings/static/description/assets/screenshots/screenshot-14.png deleted file mode 100644 index 35c72f792..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-14.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-15.png b/customize_settings/static/description/assets/screenshots/screenshot-15.png deleted file mode 100644 index e8aa45ed4..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-15.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-16.png b/customize_settings/static/description/assets/screenshots/screenshot-16.png deleted file mode 100644 index 9052f6201..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-16.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-17.png b/customize_settings/static/description/assets/screenshots/screenshot-17.png deleted file mode 100644 index 11e323ac7..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-17.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-18.png b/customize_settings/static/description/assets/screenshots/screenshot-18.png deleted file mode 100644 index fd33416b5..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-18.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-19.png b/customize_settings/static/description/assets/screenshots/screenshot-19.png deleted file mode 100644 index 36ba81bdc..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-19.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-2.png b/customize_settings/static/description/assets/screenshots/screenshot-2.png deleted file mode 100644 index f236d09e1..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-2.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-20.png b/customize_settings/static/description/assets/screenshots/screenshot-20.png deleted file mode 100644 index 6ae024160..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-20.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-3.png b/customize_settings/static/description/assets/screenshots/screenshot-3.png deleted file mode 100644 index 059c21fb0..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-3.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-4.png b/customize_settings/static/description/assets/screenshots/screenshot-4.png deleted file mode 100644 index de5072216..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-4.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-5.png b/customize_settings/static/description/assets/screenshots/screenshot-5.png deleted file mode 100644 index 66c76cd7f..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-5.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-6.png b/customize_settings/static/description/assets/screenshots/screenshot-6.png deleted file mode 100644 index 2200a0451..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-6.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-7.png b/customize_settings/static/description/assets/screenshots/screenshot-7.png deleted file mode 100644 index d727e5bc9..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-7.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-8.png b/customize_settings/static/description/assets/screenshots/screenshot-8.png deleted file mode 100644 index 225a5d1f1..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-8.png and /dev/null differ diff --git a/customize_settings/static/description/assets/screenshots/screenshot-9.png b/customize_settings/static/description/assets/screenshots/screenshot-9.png deleted file mode 100644 index ce31d03b7..000000000 Binary files a/customize_settings/static/description/assets/screenshots/screenshot-9.png and /dev/null differ diff --git a/customize_settings/static/description/banner.png b/customize_settings/static/description/banner.png deleted file mode 100644 index 375055c04..000000000 Binary files a/customize_settings/static/description/banner.png and /dev/null differ diff --git a/customize_settings/static/description/icon.png b/customize_settings/static/description/icon.png deleted file mode 100644 index 19f940433..000000000 Binary files a/customize_settings/static/description/icon.png and /dev/null differ diff --git a/customize_settings/static/description/index.html b/customize_settings/static/description/index.html deleted file mode 100644 index e1e0e491b..000000000 --- a/customize_settings/static/description/index.html +++ /dev/null @@ -1,645 +0,0 @@ -
- -
- -
-
- Community -
-
- Enterprise -
-
-
- - - -

ODOO - DEBRANDING

-

Odoo Backend and Frontend Debranding In V16

- - - -
- - -
-
- -
-

Explore This - Module

-
- - - - -
-
- -
-

Overview -

-
-
-
- Odoo debranding module allows you to debrand odoo backend and front end. -
- -
- - - -
-
- -
-

Features -

-
-
-
-
- - Update User dropdown list - -
-
-
-
- - Modify Page Title - -
-
-
-
- - Modify Database Selector Page - -
-
-
-
- - Change the OdooBot Name - -
-
- -
-
- - Odoo Notifications - -
-
- -
-
- - Remove Odoo Reference from 'Apps' Module - -
-
- - -
- - - - -
-
- -
-

Screenshots -

-
-
-
- -
-

Update User dropdown - list

-

Updated the user - dropdown list. The style of user menu list has changed, and removed some menus.

-

Before install

- -

After install

- -
- -
-

Modify Page Title -

-

Changed title name. - Odoo default title is changed to company's name.

-

Before install

- -

After install

- -
- -
-

Database Manager

-

The user can view the - company logo in the database manager.

-

Before install

- -

After install

- -
- -
-

Database Manager

-

Changed title of - database manager page. It is changed to company's name.

-

Before install

- -

After install

- -
- -
-

Odoo Apps

-

Updated the Apps Views. - Removed 'Learn More' button from the apps kanban view. Removed the author and website from the list - view. Removed the website details from the apps form view.

-

Before install

- - -

After install

- - -
- -
-

Odoo Apps

-

'Upgrade' and - 'Uninstall' button in apps Kanban view: this helps to easily to uninstall and upgrade the modules.

-

Before install

- -

After install

- -
- -
-

OdooBot User - Name

-

Rename "OdooBot" to - "System User"

-

Before install

- -

After install

- -
-
-

Odoo Dailog Box

-

Backend Odoo - Notification Updated. It replaces the odoo from the web.dialog.

-

Before install

- -

After install

- -
-
-

Odoo Errors

-

Backend Odoo Errors - Updated. Replaced the odoo name from the error boxes

-

Before install

- -

After install

- -
-
-
- - - -
-
- -
-

Related - Products -

-
-
-
- -
-
- - - - -
-
- -
-

Our Services -

-
- -
-
-
-
- -
-
- Odoo - Customization
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Support
-
- - -
-
- -
-
- Hire - Odoo - Developer
-
- -
-
- -
-
- Odoo - Integration
-
- -
-
- -
-
- Odoo - Migration
-
- - -
-
- -
-
- Odoo - Consultancy
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Licensing Consultancy
-
-
- -
- - - - - -
-
- -
-

Our - Industries -

-
- -
-
-
-
- -
- Trading -
-

- Easily procure - and - sell your products

-
-
- -
-
- -
- POS -
-

- Easy - configuration - and convivial experience

-
-
- -
-
- -
- Education -
-

- A platform for - educational management

-
-
- -
-
- -
- Manufacturing -
-

- Plan, track and - schedule your operations

-
-
- -
-
- -
- E-commerce & Website -
-

- Mobile - friendly, - awe-inspiring product pages

-
-
- -
-
- -
- Service Management -
-

- Keep track of - services and invoice

-
-
- -
-
- -
- Restaurant -
-

- Run your bar or - restaurant methodically

-
-
- -
-
- -
- Hotel Management -
-

- An - all-inclusive - hotel management application

-
-
-
-
- - - - -
-
- -
-

Support -

-
-
-
-
-
-
- -
-
-

Need Help?

-

Got questions or need help? Get in touch.

- -

- odoo@cybrosys.com

-
-
-
-
-
-
-
- -
-
-

WhatsApp

-

Say hi to us on WhatsApp!

- -

+91 86068 - 27707

-
-
-
-
-
-
-
- -
-
-
- \ No newline at end of file diff --git a/customize_settings/static/src/js/dialogs.js b/customize_settings/static/src/js/dialogs.js deleted file mode 100644 index 07df68d94..000000000 --- a/customize_settings/static/src/js/dialogs.js +++ /dev/null @@ -1,13 +0,0 @@ -odoo.define('customize_settings.dialog', async function(require){ - "use strict"; - const { Dialog } = require("@web/core/dialog/dialog"); - const { patch } = require("@web/core/utils/patch"); - patch(Dialog.prototype,"customize_settings.Dialog",{ - setup() { - this._super(...arguments); - console.log(this.props) - this.props.title = 'System' - } - }); -}); - diff --git a/customize_settings/static/src/js/error_dialogs.js b/customize_settings/static/src/js/error_dialogs.js deleted file mode 100644 index 2bdc180df..000000000 --- a/customize_settings/static/src/js/error_dialogs.js +++ /dev/null @@ -1,47 +0,0 @@ -odoo.define('customize_settings.error_dialogs', function(require){ - 'use strict'; - - const { odooExceptionTitleMap, ErrorDialog, ClientErrorDialog, NetworkErrorDialog, - RPCErrorDialog, WarningDialog, SessionExpiredDialog } = require("@web/core/errors/error_dialogs"); - const { patch } = require("@web/core/utils/patch"); - const { _lt } = require("@web/core/l10n/translation"); - - ErrorDialog.title=_lt("System Error"); - - ClientErrorDialog.title = _lt('System Client Error'); - - SessionExpiredDialog.title = _lt('System Session Expired'); - - NetworkErrorDialog.title = _lt('System Network Expired'); - - patch(RPCErrorDialog.prototype, 'customize_settings.RPCErrorDialog',{ - inferTitle() { - if (this.props.exceptionName && odooExceptionTitleMap.has(this.props.exceptionName)) { - this.title = odooExceptionTitleMap.get(this.props.exceptionName).toString(); - return; - } - if (!this.props.type) { - return; - } - switch (this.props.type) { - case "server": - this.title = this.env._t("System Server Error"); - break; - case "script": - this.title = this.env._t("System Client Error"); - break; - case "network": - this.title = this.env._t("System Network Error"); - break; - } - } - }); - - patch(WarningDialog.prototype, 'customize_settings.WarningDialog',{ - setup() { - super.setup(); - this.title = this.env._t("System Warning"); - } - }); - -}); diff --git a/customize_settings/static/src/js/web_client.js b/customize_settings/static/src/js/web_client.js deleted file mode 100644 index bd016c506..000000000 --- a/customize_settings/static/src/js/web_client.js +++ /dev/null @@ -1,32 +0,0 @@ -odoo.define('customize_settings.web_client',async function(require){ - 'use strict'; - - const{WebClient}=require("@web/webclient/webclient"); - const{patch}=require("@web/core/utils/patch"); - const{useService}=require("@web/core/utils/hooks"); - const{useOwnDebugContext}=require("@web/core/debug/debug_context"); - const{registry}=require("@web/core/registry"); - const{DebugMenu}=require("@web/core/debug/debug_menu"); - const{localization}=require("@web/core/l10n/localization"); - const{useTooltip}=require("@web/core/tooltip/tooltip_hook"); - const rpc=require('web.rpc'); - var session = require('web.session'); - - patch(WebClient.prototype,"customize_settings.WebClient",{ - setup(){ - this.menuService=useService("menu");this._super() - var domain = session.user_context.allowed_company_ids; - var obj = this; - rpc.query({ - fields: ['name','id',], - domain: [['id', 'in', domain]], - model: 'res.company', - method: 'search_read', - }).then(function (result) { - obj.title.setParts({ zopenerp: result[0].name }); // Replacing the name 'Oodo' to selected company name near favicon - }); - - }, - }); -}); - diff --git a/customize_settings/static/src/public/database_manager.qweb.html b/customize_settings/static/src/public/database_manager.qweb.html deleted file mode 100644 index 944b4e99f..000000000 --- a/customize_settings/static/src/public/database_manager.qweb.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - <t t-esc="website_name" /> - - - - - - - - - - - - - - - -
- -
-
- Logo - -
The database manager has been disabled by the administrator
-
- -
- Warning, your Odoo database manager is not protected.
- Please set a master password to secure it. -
-
- -
-
- -
- - -
- - - - - - - -
- - - -
-
-
-
-
- -
- - - -
-
- - - -
- -
- - - - or restore a database -
-
-
- - - - - - - - - - - - - - - - - - -
- - diff --git a/customize_settings/static/src/xml/user_menu_items.xml b/customize_settings/static/src/xml/user_menu_items.xml deleted file mode 100644 index 787ec7180..000000000 --- a/customize_settings/static/src/xml/user_menu_items.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - User - - - - - - - - - - - - -