You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
# -*- coding: utf-8 -*-
|
|
# Copyright 2004-today Odoo SA (<http://www.odoo.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class WebShortcut(models.Model):
|
|
_name = 'web.shortcut'
|
|
|
|
name = fields.Char('Shortcut Name', size=64)
|
|
menu_id = fields.Many2one('ir.ui.menu', ondelete='cascade')
|
|
user_id = fields.Many2one('res.users', 'User Ref.', required=True,
|
|
ondelete='cascade', index=True,
|
|
default=lambda self: self.env.user.id)
|
|
|
|
_sql_constraints = [
|
|
('shortcut_unique', 'unique(menu_id,user_id)',
|
|
'Shortcut for this menu already exists!'),
|
|
]
|
|
|
|
@api.model
|
|
def get_user_shortcuts(self):
|
|
shortcuts = self.search([('user_id', '=', self.env.user.id)])
|
|
res = []
|
|
for shortcut in shortcuts.filtered('menu_id'):
|
|
_name = shortcut.menu_id.name_get()
|
|
_name = _name[0][1] if len(_name) else ''
|
|
_id = shortcut.menu_id.id
|
|
res.append(
|
|
{
|
|
'id': shortcut.id,
|
|
'name': _name,
|
|
'menu_id': (_id, _name)
|
|
}
|
|
)
|
|
return res
|