oca-ocb-core/odoo-bringout-oca-ocb-web/web/models/ir_ui_menu.py
Ernad Husremovic d1963a3c3a vanilla 19.0
2025-10-08 10:49:46 +02:00

87 lines
3.6 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import re
from odoo import models
class IrUiMenu(models.Model):
_inherit = "ir.ui.menu"
def load_web_menus(self, debug):
""" Loads all menu items (all applications and their sub-menus) and
processes them to be used by the webclient. Mainly, it associates with
each application (top level menu) the action of its first child menu
that is associated with an action (recursively), i.e. with the action
to execute when the opening the app.
:return: the menus (including the images in Base64)
"""
menus = self.load_menus(debug)
web_menus = {}
for menu in menus.values():
if not menu['id']:
# special root menu case
web_menus['root'] = {
"id": 'root',
"name": menu['name'],
"children": menu['children'],
"appID": False,
"xmlid": "",
"actionID": False,
"actionModel": False,
"actionPath": False,
"webIcon": None,
"webIconData": None,
"webIconDataMimetype": None,
"backgroundImage": menu.get('backgroundImage'),
}
else:
action_id = menu['action_id']
action_model = menu['action_model']
action_path = menu['action_path']
web_icon = menu['web_icon']
web_icon_data = menu['web_icon_data']
if menu['id'] == menu['app_id']:
# if it's an app take action of first (sub)child having one defined
child = menu
while child and not action_id:
action_id = child['action_id']
action_model = child['action_model']
action_path = child['action_path']
child = menus[child['children'][0]] if child['children'] else False
webIcon = menu.get('web_icon', '')
webIconlist = webIcon and webIcon.split(',')
iconClass = color = backgroundColor = None
if webIconlist:
if len(webIconlist) >= 2:
iconClass, color = webIconlist[:2]
if len(webIconlist) == 3:
backgroundColor = webIconlist[2]
if menu.get('web_icon_data'):
web_icon_data = re.sub(r'\s/g', "", ('data:%s;base64,%s' % (menu['web_icon_data_mimetype'], menu['web_icon_data'])))
elif backgroundColor is not None: # Could split in three parts?
web_icon = ",".join([iconClass or "", color or "", backgroundColor])
else:
web_icon_data = '/web/static/img/default_icon_app.png'
web_menus[menu['id']] = {
"id": menu['id'],
"name": menu['name'],
"children": menu['children'],
"appID": menu['app_id'],
"xmlid": menu['xmlid'],
"actionID": action_id,
"actionModel": action_model,
"actionPath": action_path,
"webIcon": web_icon,
"webIconData": web_icon_data,
"webIconDataMimetype": menu['web_icon_data_mimetype'],
}
return web_menus