[IMP] bi_sql_editor: Remove useless monkeypatch

On class creation by the ORM of 'manual' model, odoo now check if the table is a real table or a view to automatically set the '_auto' property on the class definition. We can therefore remove the monkey patch on 'ir.model'.

see 17c4f47b0a
pull/670/head
Laurent Mignon (ACSONE) 2022-03-16 10:59:23 +01:00 committed by OCA-git-bot
parent 018714dd95
commit 7e827070bd
1 changed files with 1 additions and 28 deletions

View File

@ -9,39 +9,12 @@ from psycopg2 import ProgrammingError
from odoo import SUPERUSER_ID, _, api, fields, models
from odoo.exceptions import UserError
from odoo.tools import pycompat, sql, table_columns
from odoo.tools import sql, table_columns
from odoo.tools.safe_eval import safe_eval
from odoo.addons.base.models.ir_model import IrModel
_logger = logging.getLogger(__name__)
@api.model
def _instanciate(self, model_data):
"""Return a class for the custom model given by
parameters ``model_data``."""
# This monkey patch is meant to avoid create/search tables for those
# materialized views. Doing "super" doesn't work.
class CustomModel(models.Model):
_name = pycompat.to_text(model_data["model"])
_description = model_data["name"]
_module = False
_custom = True
_transient = bool(model_data["transient"])
__doc__ = model_data["info"]
# START OF patch
if model_data["model"].startswith(BiSQLView._model_prefix):
CustomModel._auto = False
CustomModel._abstract = True
# END of patch
return CustomModel
IrModel._instanciate = _instanciate
class BiSQLView(models.Model):
_name = "bi.sql.view"
_description = "BI SQL View"