Browse Source

FIX account_financial_report_qweb trial balance: consider journals set in wizard

pull/677/head
eLBati 4 years ago
parent
commit
7ebf550518
  1. 5
      account_financial_report_qweb/report/general_ledger.py

5
account_financial_report_qweb/report/general_ledger.py

@ -328,6 +328,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