reporting-engine/bi_view_editor/models/models.py
2021-04-28 17:43:56 +02:00

49 lines
1.3 KiB
Python

# Copyright 2017-2020 Onestein (<https://www.onestein.eu>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
import logging
from flectra import _, api, models
from flectra.exceptions import UserError
_logger = logging.getLogger(__name__)
@api.model
def _bi_view(_name):
return _name.startswith("x_bve.")
_auto_init_orig = models.BaseModel._auto_init
def _auto_init(self):
# This monkey patch is meant to fix an error (probably
# introduced by https://github.com/flectra/flectra/pull/15412), while
# running an update all. The _auto_init() method invoked during
# an update all is the one of BaseModel, and not the one of Base.
# This monkey patch seems not working if defined inside the post_load()
if _bi_view(self._name):
return
return _auto_init_orig(self)
models.BaseModel._auto_init = _auto_init
class Base(models.AbstractModel):
_inherit = "base"
@api.model
def _read_group_process_groupby(self, gb, query):
if not _bi_view(self._name):
return super()._read_group_process_groupby(gb, query)
split = gb.split(":")
if split[0] not in self._fields:
raise UserError(_("No data to be displayed."))
return super()._read_group_process_groupby(gb, query)