mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 10:42:08 +00:00
19 lines
475 B
Python
19 lines
475 B
Python
|
# Copyright 2019 Creu Blanca
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import api, models
|
||
|
|
||
|
|
||
|
class Base(models.AbstractModel):
|
||
|
_inherit = 'base'
|
||
|
|
||
|
@api.multi
|
||
|
def get_quick_access_code(self):
|
||
|
self.ensure_one()
|
||
|
rule = self.env['document.quick.access.rule'].search([
|
||
|
('model_id.model', '=', self._name)
|
||
|
], limit=1)
|
||
|
if not rule:
|
||
|
return False
|
||
|
return rule.get_code(self)
|