mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-15 10:42:07 +00:00
27 lines
938 B
Python
27 lines
938 B
Python
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
|
|
|
|
from flectra import api, models
|
|
|
|
|
|
class IrActionsActWindow(models.Model):
|
|
_inherit = "ir.actions.act_window"
|
|
|
|
@api.model
|
|
def name_search(self, name, args=None, operator="ilike", limit=100):
|
|
if self._context.get("access_sudo", False):
|
|
self = self.sudo()
|
|
return super().name_search(name, args, operator, limit)
|
|
|
|
@api.model
|
|
def search(self, args, offset=0, limit=None, order=None, count=False):
|
|
if self._context.get("access_sudo", False):
|
|
self = self.sudo()
|
|
return super().search(args, offset, limit, order, count)
|
|
|
|
def _read(self, fields):
|
|
"""Add permission to read analytic account for do something."""
|
|
if self._context.get("access_sudo", False):
|
|
self = self.sudo()
|
|
return super()._read(fields)
|