diff --git a/vista_backend_theme/__manifest__.py b/vista_backend_theme/__manifest__.py index 9e63935cf..35401e793 100644 --- a/vista_backend_theme/__manifest__.py +++ b/vista_backend_theme/__manifest__.py @@ -25,7 +25,7 @@ "description": """Minimalist and elegant backend theme for Odoo 14, Backend Theme, Theme""", "summary": "Vista Backend Theme V15 is an attractive theme for backend", "category": "Theme/Backend", - "version": "15.0.1.0.0", + "version": "15.0.1.0.1", 'author': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions', 'maintainer': 'Cybrosys Techno Solutions', diff --git a/vista_backend_theme/hooks.py b/vista_backend_theme/hooks.py index d90efe014..5085842a4 100644 --- a/vista_backend_theme/hooks.py +++ b/vista_backend_theme/hooks.py @@ -162,192 +162,3 @@ def test_post_init_hook(cr, registry): """post init hook""" env = api.Environment(cr, SUPERUSER_ID, {}) - menu_item = env['ir.ui.menu'].search([('parent_id', '=', False)]) - - for menu in menu_item: - if menu.name == 'Contacts': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'contacts.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Link Tracker': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'link-tracker.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Dashboards': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'dashboards.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Sales': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'sales.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Invoicing': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'accounting.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Inventory': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'inventory.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Purchase': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'purchase.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Calendar': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'calendar.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'CRM': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'crm.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Note': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'note.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Website': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'website.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Point of Sale': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'pos.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Manufacturing': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'manufacturing.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Repairs': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'repairs.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Email Marketing': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'email-marketing.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'SMS Marketing': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'sms-marketing.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Project': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'project.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Surveys': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'surveys.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Employees': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'employee.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Recruitment': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'recruitment.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Attendances': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'attendances.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Time Off': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'time-off.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Expenses': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'expenses.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Maintenance': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'maintenance.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Live Chat': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'live-chat.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Lunch': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'lunch.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Fleet': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'fleet.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Timesheets': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'timesheets.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Events': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'events.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'eLearning': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'elearning.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) - if menu.name == 'Members': - img_path = get_module_resource( - 'vista_backend_theme', 'static', 'src', 'img', 'icons', - 'members.png') - menu.write({'web_icon_data': base64.b64encode( - open(img_path, "rb").read())}) \ No newline at end of file