Odoo18-Base/addons/hr/models/ir_ui_menu.py

15 lines
418 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, api, tools
class IrUiMenu(models.Model):
_inherit = 'ir.ui.menu'
def _load_menus_blacklist(self):
res = super()._load_menus_blacklist()
if self.env.user.has_group('hr.group_hr_user'):
res.append(self.env.ref('hr.menu_hr_employee').id)
return res