Tuesday, August 23, 2022
4 changes
Enhancements to existing features
Computed and related fields in Documents and Mail Enterprise are now automatically treated as read-only. This reduces the chance of accidental edits to values that are meant to be generated by the system, improving data consistency with minimal user-facing disruption.
Original PR description
Automatically add readonly on computed and related fields. This commit required to rewrite some preexisting fields to make them readonly. \* = documents Task-2955927. Community: https://github.com/odoo/odoo/pull/98541
This update removes an outdated configuration hook from the Point of Sale enterprise module. The related setup logic now lives in the general settings area, reducing duplicate code and helping keep future maintenance simpler.
Original PR description
Purpose ======= The logic has been moved from the pos.config to the res.config.settings model/views, and therefore this js_class is not used anymore. TaskID: 2958057
Signature request emails now direct replies to the person who sent the request. This helps keep follow-up questions or confirmations from recipients visible to the responsible person instead of being lost.
Original PR description
Currently in sign, when emails for a sign request are sent, no reply_to param is set on the mail.mail record. So if someone replies to the email, it will end nowhere. This commit adds the email of the person who requested the signature, so that if anyone replies to the email, the responsible person will receive it and will be able to continue the conversation. task-2702011
The Knowledge app invite area is now fully clickable, making it easier for users to invite others without needing to click a small target. This improves usability and reduces friction when collaborating on knowledge articles.
Original PR description
To make the whole 'invite' zone clickable, we just need to embed the design divs inside a button and make it look nice. Task-2893088