[FIX] account_financial_report: Incorrect SQL query for cost centers

This commit is contained in:
Pedro M. Baeza
2019-02-07 17:30:38 +01:00
committed by chaule97
parent 5129afec18
commit 9400274b38

View File

@@ -1619,7 +1619,7 @@ WITH move_lines_on_tags AS
if self.filter_cost_center_ids:
query_select_previous_fy_unaffected_earnings += """
INNER JOIN account_analytic_account aa
ON aml.analytic_account_id = aa.id
ON ml.analytic_account_id = aa.id
AND aa.id IN %(cost_center_ids)s
"""
query_select_previous_fy_unaffected_earnings_params[
@@ -1675,7 +1675,7 @@ WITH move_lines_on_tags AS
if self.filter_cost_center_ids:
query_select_period_unaffected_earnings += """
INNER JOIN account_analytic_account aa
ON aml.analytic_account_id = aa.id
ON ml.analytic_account_id = aa.id
AND aa.id IN %(cost_center_ids)s
"""
query_select_period_unaffected_earnings_params[