actually filter by date

pull/367/head
Leonardo Pistone 2016-04-28 16:43:40 +02:00 committed by Jordi Ballester
parent 1727b334c8
commit ecb0c47250
1 changed files with 4 additions and 2 deletions

View File

@ -95,10 +95,12 @@ class LedgerReportWizard(models.TransientModel):
cumul_balance, cumul_balance,
%(wizard_id)s as wizard_id %(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) self.env.cr.execute(query, params)
return True return True