Wednesday, May 6, 2026
3 changes · master
Enhancements to existing features
This update enhances the appearance of PDF Manager actions by removing an unnecessary styling class. Previously, action names had an awkward capitalization style. This change ensures a cleaner and more professional user experience when working with PDF documents within the Enterprise module.
Original PR description
Previously, pdf_manager actions used class "text-uppercase". Action names looked awkward. In this commit, we remove the class and properly display action names. task-6159317
This update adds a simple button to the offer form in Odoo, allowing users to easily regenerate the offer token. This is a security enhancement to protect against compromised email addresses and ensures tokens are always up-to-date. It provides a convenient way to manage offer tokens without needing technical assistance.
Original PR description
Add a button in the cogwheel of the offer form view to regenerate the token in case the email is compromised or the token needs to be updated for any other reason. Task-5172914
This update removes a confusing distinction between 'Regular' and 'Accrual' holiday allocation types. Now, allocations are automatically categorized based on whether an accrual plan is set up, leading to a simpler and more intuitive user experience. This change improves the overall system clarity and reduces potential errors.
Original PR description
Before: - Allocations were explicitly divided into Regular and Accrual types through the allocation_type field. - This separation created an unintuitive UX and added unnecessary complexity to the logic. After: - Removed the allocation_type field. - Simplified the logic so that: - If an allocation has an accrual plan → it is treated as accrual. - If no accrual plan is set → it is treated as a regular allocation. - This improves clarity, simplifies the flow, and makes the behavior more intuitive. Task-5944548