1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
from trytond.model import ModelView, ModelSQL, fields
class DashboardAction(ModelSQL, ModelView):
"Dashboard Action"
_name = "dashboard.action"
user = fields.Many2One('res.user', 'User', required=True,
select=1)
sequence = fields.Integer('Sequence')
act_window = fields.Many2One('ir.action.act_window', 'Action',
required=True, ondelete='CASCADE', domain=[
('res_model', '!=', False),
('res_model', '!=', ''),
])
def __init__(self):
super(DashboardAction, self).__init__()
self._order.insert(0, ('sequence', 'ASC'))
DashboardAction()
|