[FIX] account: manual reconciliation was not showing partners if the payment was encoded the same day than the last_reconciliation_date

bzr revid: qdp-launchpad@openerp.com-20130322143458-3tgw6pjmxetuomeq
This commit is contained in:
Quentin (OpenERP) 2013-03-22 15:34:58 +01:00
commit 0094cebad9
1 changed files with 1 additions and 1 deletions

View File

@ -742,7 +742,7 @@ class account_move_line(osv.osv):
def list_partners_to_reconcile(self, cr, uid, context=None):
cr.execute(
"""SELECT partner_id FROM (
SELECT l.partner_id, p.last_reconciliation_date, SUM(l.debit) AS debit, SUM(l.credit) AS credit, MAX(l.date) AS max_date
SELECT l.partner_id, p.last_reconciliation_date, SUM(l.debit) AS debit, SUM(l.credit) AS credit, MAX(l.create_date) AS max_date
FROM account_move_line l
RIGHT JOIN account_account a ON (a.id = l.account_id)
RIGHT JOIN res_partner p ON (l.partner_id = p.id)