Browse Source

Merge PR #678 into 12.0

Signed-off-by dreispt
pull/713/head
OCA-git-bot 4 years ago
parent
commit
b9d1396069
  1. 5
      account_financial_report/report/general_ledger.py

5
account_financial_report/report/general_ledger.py

@ -331,6 +331,11 @@ class GeneralLedgerReportCompute(models.TransientModel):
sub_subquery_sum_amounts += """
AND at.include_initial_balance = TRUE
"""
if self.filter_journal_ids:
sub_subquery_sum_amounts += """
AND
ml.journal_id IN %s
""" % (tuple(self.filter_journal_ids.ids,),)
if self.only_posted_moves:
sub_subquery_sum_amounts += """

Loading…
Cancel
Save