Tuesday, November 14, 2023
5 changes · master
Enhancements to existing features
This update simplifies internal sales stock processing logic to make the code easier to read and maintain. It does not change business workflows, but it can help reduce future maintenance effort in the sales and inventory flow.
Original PR description
Improve the code of the method _action_launch_stock_rule by doing the check on self by filtered to prevent checking each line when entering in the scop of the loop,this improves the readability of the code --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes an unnecessary internal placeholder from stock movement processing. It does not change how users manage inventory, but it helps keep the code simpler and easier to maintain.
Original PR description
The variable in_date = None is useless in create_move method because it will be created and set in Quant._update_available_quantity ,so we have to remove it in order to increase code quality --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The task action menu now shows “Share Task” instead of the more generic “Share.” This makes it clearer for users that the action applies specifically to tasks, reducing confusion in day-to-day project work.
Original PR description
Before this PR when we share task then in action menu only share was shown In this PR to make it user friendly we have made share task for task in action menu task-3328065
An obsolete developer comment about access rights was removed from the Base module documentation in the code. This has no impact on product behavior, but helps keep internal guidance accurate and reduces confusion for future maintenance.
Original PR description
This comment became obsolete after odoo/odoo#43306. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Helpdesk action menu now labels ticket sharing as “Share Ticket” instead of the generic “Share.” This makes the action clearer for users and helps distinguish ticket sharing from similar actions on other records.
Original PR description
Before this PR when we share task or ticket then in action menu only share was shown In this PR to make it user friendly we have made share task for task in action menu and for ticket we have made share ticket task-3328065