5

What is the difference between write and update method in odoo11 because when i use write it work first time only then it not work.

user_123
  • 426
  • 7
  • 23

1 Answers1

12

For simple fields

should give you a single update statement in the database, and

  • update({'attr1': 'val1', 'attr2': 'val2'})

iterates over the fields and sets each one separately giving you multiple update statements in the database.

bigbear3001
  • 522
  • 8
  • 19