[FIX] fields: in *2many.convert_to_cache, fix the effect of command "1"
[odoo/odoo.git] / openerp / fields.py
index 8644232..2234528 100644 (file)
@@ -1438,6 +1438,7 @@ class _RelationalMulti(_Relational):
                         result += result.new(command[2])
                     elif command[0] == 1:
                         result.browse(command[1]).update(command[2])
+                        result += result.browse(command[1]) - result
                     elif command[0] == 2:
                         # note: the record will be deleted by write()
                         result -= result.browse(command[1])