bzr revid: fp@tinyerp.com-20081216103620-khy4x2gv3efvh0m1
This commit is contained in:
Fabien Pinckaers 2008-12-16 11:36:20 +01:00
parent e773407ee5
commit 3d84754c69
1 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,6 @@ class browse_record(object):
self._data[id] = {'id': id}
self._cache = cache
pass
def __getitem__(self, name):
if name == 'id':
@ -2059,7 +2058,8 @@ class orm(orm_template):
'where id in ('+str_d+')', sub_ids)
for order, object, ids, fields in result_store:
self.pool.get(object)._store_set_values(cr, uid, ids, fields, context)
if object<>self._name:
self.pool.get(object)._store_set_values(cr, uid, ids, fields, context)
return True
#