Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
10596 มุมมอง

Some user opens an edit form on a object, as long as this user doesn´t close this form I want other users to be denied to editing.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Pessimistic locking is not an option with Odoo, being quite impractical in a stateless web-based environment.

Odoo implements Optimistic Concurrency Control:

For every object, there is a virtual __last_update field that clients can requests explicitly as part of regular read() calls, on any model. The value is automatically inferred from the write_date and create_date fields that the framework maintains on any record by default. When the client later makes a write() call on the same record, it can pass an extra context structure containing the original __last_update value, and the system will automatically raise an error if the record has been updated in the meantime. See the _check_concurrency() method for more details.


See http://stackoverflow.com/questions/18960668/no-concurrency-check-when-updating-records

อวตาร
ละทิ้ง
ผู้เขียน

Thank you

Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ธ.ค. 19
6300
1
มี.ค. 15
6783
Field editing after create a form แก้ไขแล้ว
1
ส.ค. 23
2036
0
ต.ค. 16
4002
4
ธ.ค. 23
24213