From a8eaf4b14c88f124ca3f5ee16808b39afb98d288 Mon Sep 17 00:00:00 2001 From: Juan Jose Scarafia Date: Wed, 27 Nov 2019 23:17:05 -0300 Subject: [PATCH] [FIX] cash_flow: forecast accumulate next columns For mis_builder to compute correctly bale we need accounts with user type include_initial_balance. We use receivable type which is the more accurate for this purpose --- mis_builder_cash_flow/__manifest__.py | 2 +- mis_builder_cash_flow/report/mis_cash_flow.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/mis_builder_cash_flow/__manifest__.py b/mis_builder_cash_flow/__manifest__.py index dc7b39e5..3f0db365 100644 --- a/mis_builder_cash_flow/__manifest__.py +++ b/mis_builder_cash_flow/__manifest__.py @@ -3,7 +3,7 @@ { 'name': 'MIS Builder Cash Flow', - 'version': '12.0.1.1.0', + 'version': '12.0.1.2.0', 'license': 'LGPL-3', 'author': 'ADHOC SA, ' 'Odoo Community Association (OCA)', diff --git a/mis_builder_cash_flow/report/mis_cash_flow.py b/mis_builder_cash_flow/report/mis_cash_flow.py index 02e4b9f6..bffb988e 100644 --- a/mis_builder_cash_flow/report/mis_cash_flow.py +++ b/mis_builder_cash_flow/report/mis_cash_flow.py @@ -66,6 +66,8 @@ class MisCashFlow(models.Model): @api.model_cr def init(self): + account_type_receivable = self.env.ref( + 'account.data_account_type_receivable') query = """ SELECT -- we use negative id to avoid duplicates and we don't use @@ -110,12 +112,11 @@ class MisCashFlow(models.Model): Null as reconciled, Null as full_reconcile_id, fl.company_id as company_id, - -- we dont need this field on forecast lines - Null as user_type_id, + %i as user_type_id, fl.name as name, fl.date as date FROM mis_cash_flow_forecast_line as fl - """ + """ % account_type_receivable.id tools.drop_view_if_exists(self.env.cr, self._table) self._cr.execute( 'CREATE OR REPLACE VIEW %s AS %s',