[FIX] (5.0 - 6.0)Account_payment : Import of move line should include the date of search due date

bzr revid: vra@tinyerp.com-20100510140111-b13w5shtxhp5wcnl
This commit is contained in:
Jay(Open ERP) 2010-05-10 19:31:11 +05:30 committed by vra
parent a6c05c04f8
commit f2d4f864a2
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class payment_order_create(osv.osv_memory):
# Search for move line to pay:
domain = [('reconcile_id', '=', False),('account_id.type', '=', 'payable'),('amount_to_pay', '>', 0)]
domain = domain + ['|',('date_maturity','<',search_due_date),('date_maturity','=',False)]
domain = domain + ['|',('date_maturity','<=',search_due_date),('date_maturity','=',False)]
line_ids = line_obj.search(cr, uid, domain, context=context)
context.update({'line_ids': line_ids})
model_data_ids = mod_obj.search(cr, uid,[('model','=','ir.ui.view'),('name','=','view_create_payment_order_lines')], context=context)