Wednesday, July 3, 2024
3 changes · 17.0
Enhancements to existing features
This update adds automated tests to verify that the planning dialog doesn't open unnecessarily when there are no shifts to schedule. This ensures the system behaves correctly and improves the user experience by preventing unwanted dialog boxes from appearing.
Original PR description
In this commit, we test the feature implemented in this PR: https://github.com/odoo/enterprise/pull/50383 task-3874263
Resolved issues and error corrections
This update resolves a visual issue in the Sign app where the 'Sign Now' button was causing unwanted spacing in the breadcrumb navigation when users zoomed in on the sign template view. A CSS styling adjustment ensures the button no longer breaks the text layout, providing a cleaner and more professional appearance.
Original PR description
**Version:** - saas-16.3 **Step to reproduce:** - In the sign app, open the sign template iframe view. - When zooming in, the 'Sign Now' button breaks the text and creates extra space in the breadcrumb. **Issue:** Currently, the sign now button text creates extra spacing. **Solution:** Add the CSS class so that it will not create additional spacing task-3977792 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix removes a duplicate display of the planned date field that was appearing twice when viewing tasks in the customer portal. The issue was caused by an xpath being added twice in the template, and removing the duplicate ensures a cleaner, less confusing user experience when checking task details.
Original PR description
Steps: - Install Website and Project module - Open the Project module - Open any project's task - Set the Planned date - Now go to the Website module - Go to My Account - Open Tasks - Open any my task Issue: - When we open any my task in portal , there is planned date show twice time . Cause: - Added xpath twice time. Fix: - remove an xpath from the portal my tasks. task-3610485