[FIX] fields.o2m.set(): typo in previous commit, should pass IDs as list to write()

bzr revid: odo@openerp.com-20110207102652-gkgyp5uqo0nk454a
This commit is contained in:
Olivier Dony 2011-02-07 11:26:52 +01:00
parent 89933f4c30
commit 9c287abc14
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ class one2many(_column):
cr.execute('update '+_table+' set '+self._fields_id+'=null where id=%s', (act[1],))
elif act[0] == 4:
# Must use write() to recompute parent_store structure if needed
obj.write(cr, user, act[1], {self._fields_id:id}, context=context or {})
obj.write(cr, user, [act[1]], {self._fields_id:id}, context=context or {})
elif act[0] == 5:
cr.execute('update '+_table+' set '+self._fields_id+'=null where '+self._fields_id+'=%s', (id,))
elif act[0] == 6: