Lock records is not enough to ensure to read last committed values
Similar to #10870 (closed) but when locking records (with SELECT...FOR UPDATE
).
For example, this creates problems when multiple tasks are posted to process the same sale: https://discuss.tryton.org/t/duplicate-customer-shipment-after-sale-amendment/8418 What may happen is that the second task is started before the first one is finished but the first one is committed before the second one reach the lock of the record. So the second task is running seeing data as they were before the first task (so with a shipment missing).
I think we should implement the same mechanism as for locking table so the records are locked at the transaction starts.