[REF] mis_builder_cash_flow: Allow to override query

pull/1252/head
Simone Rubino 2024-11-20 09:29:10 +01:00
parent 8138924d8f
commit 74e2ecab84
No known key found for this signature in database
GPG Key ID: 9B3C2C5348EB3357
1 changed files with 5 additions and 2 deletions

View File

@ -55,8 +55,8 @@ class MisCashFlow(models.Model):
"selection"
]
def init(self):
query = """
def _init_query(self):
return """
SELECT
-- we use negative id to avoid duplicates and we don't use
-- ROW_NUMBER() because the performance was very poor
@ -108,6 +108,9 @@ class MisCashFlow(models.Model):
fl.date as date
FROM mis_cash_flow_forecast_line as fl
"""
def init(self):
query = self._init_query()
tools.drop_view_if_exists(self.env.cr, self._table)
self._cr.execute(
"CREATE OR REPLACE VIEW %s AS (%s)", (AsIs(self._table), AsIs(query))