[FIX] point_of_sale : Payment wizard did not have null value for selection

bzr revid: jvo@tinyerp.com-20100823073159-k5plq79s5q319ma7
This commit is contained in:
Jay (OpenERP) 2010-08-23 13:01:59 +05:30
parent 6e20a49766
commit 9298971abc
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ def get_journal(self, cr, uid, context):
res_obj = [(r1['id'])for r1 in res_obj]
res = statement_obj.read(cr, uid, obj_ids, ['journal_id'], context)
res = [(r['journal_id']) for r in res]
res.insert(0, ('', ''))
return res
class pos_box_entries(osv.osv_memory):