[FIX] Fixed the previous fix.

bzr revid: tde@openerp.com-20120210135754-b75km0luh34qw0xw
This commit is contained in:
Thibault Delavallée 2012-02-10 14:57:54 +01:00
parent e8d373aa6c
commit a921683279
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class pos_open_statement(osv.osv_memory):
'view_type': 'form',
'view_mode': 'tree,form',
'res_model': 'account.bank.statement',
'domain': str([('id', 'in', str(st_ids))]),
'domain': str([('id', 'in', st_ids)]),
'views': [(tree_id, 'tree'), (form_id, 'form')],
'search_view_id': search_id,
}