Browse Source

actually filter by date

pull/367/head
Leonardo Pistone 9 years ago
committed by Jordi Ballester
parent
commit
ecb0c47250
  1. 6
      account_financial_report_qweb/wizard/ledger_report_wizard.py

6
account_financial_report_qweb/wizard/ledger_report_wizard.py

@ -95,10 +95,12 @@ class LedgerReportWizard(models.TransientModel):
cumul_balance,
%(wizard_id)s as wizard_id
from view_q where date >= %(fy_date)s
from view_q
where date between %(date_from)s and %(date_to)s
"""
params = dict(fy_date=self.fy_start_date, wizard_id=self.id)
params = dict(fy_date=self.fy_start_date, wizard_id=self.id,
date_from=self.date_from, date_to=self.date_to)
self.env.cr.execute(query, params)
return True

Loading…
Cancel
Save