Tuesday, November 7, 2023
8 changes
Resolved issues and error corrections
This fix removes an incorrect warning message that was appearing when users tried to share appointment meetings, even when they were already part of the meeting. The issue was caused by typos in the code that prevented proper validation of user participation. After this fix, users will no longer see the warning if they are already part of the appointment.
Original PR description
Steps to Reproduce =================== - Open appointment in which your are part of that. - Try to share the interview meeting. - Warning will be there even if a user is part of that meeting. Technical ========== Due to some typos here https://github.com/odoo/enterprise/commit/d1e75bf651ba06ce065afa8e6ca18e6b25e2dfce After this pr ================== There will be no warning if the user is a part of it. Task-3487715
This update adapts automated tests in the accounting and web studio modules to work with recent changes to the web framework's command system. The changes replace outdated test commands and fix a timing issue in bank reconciliation tests to ensure tax calculations complete before validation, improving test reliability.
This update fixes the visual layout of the favorite widget in the Frontdesk kanban view. The widget now appears in the correct position at the top of cards alongside the title, rather than below it, and the card spacing has been improved for better visual balance.
Original PR description
This commit fixes the position of the favorite widget within the kanban view of Frontdesk. Prior to this commit, the filter was added after the title, which would displays it under the title. To fix the issue, we place it before the title, as we do in Project, and add some flex classes to handle that layout. We also removed some `padding` classes to provide a better visual alignment between the left and right side of our cards. task-3582084 | 17.0 | 17.0-fix-frontdesk-favorite-position-kanban-chgo | | ------------- | ------------- | | <img alt="image" src="https://github.com/odoo/enterprise/assets/128030743/0d1ba064-0fbf-432f-8d94-4e6e8ea9dcf7"> | <img alt="image" src="https://github.com/odoo/enterprise/assets/128030743/1166c628-71da-404c-bbd8-44e63ae55e2a"> |
This update fixes several display issues in the Frontdesk module to improve the user experience. The changes adjust text sizing on large screens, ensure the footer stays visible while scrolling through products, and make the product grid adapt better to different numbers of items. These improvements make the interface more polished and easier to use.
Original PR description
This commit address several UI issues: - Adjust base font-size on xxl screens - DrinkPage component: ensure that the footer is fixed and that the scrollbar is applied on the products grid. - DrinkPage component: introducing grid's column adaptations according to the number of products rendered on screen. task-3581651
A typo in the custom CSS class name for the Aged Payable and Receivable reports has been corrected. This fix ensures the styling displays correctly for these financial reports, improving the visual presentation and user experience when viewing aged partner balance information.
This update fixes several testing issues in the appointment and knowledge modules. The changes remove unnecessary test artifacts and update test methods to work with the latest code, ensuring tests run more reliably and accurately reflect real-world scenarios.
Original PR description
Community PR: https://github.com/odoo/odoo/pull/138062 Tests were run with the link zws in the way, which in real-life circumstances would have been cleaned away. This commit removes the zws for testing purposes. Forward-Port-Of: odoo/enterprise#50120 Forward-Port-Of: odoo/enterprise#49602
This update corrects a typo in the account reports PDF export feature that was preventing analytic plans from displaying correctly in the export filters. The fix removes outdated code references and ensures the proper configuration key is used, improving the reliability of PDF report generation with analytic data.
Original PR description
Fixes a typo in the key used to show analytic plans in the PDF export filters. Forward-Port-Of: odoo/enterprise#50011 Forward-Port-Of: odoo/enterprise#48232
This update removes an outdated workaround from the accounting reports PDF templates that is no longer needed. The system now automatically handles which filter options appear on printed reports, eliminating the need for special configuration. This cleanup makes the code simpler and easier to maintain.
Original PR description
'closing_entry' option key was introduced in l10n_be in order to bypass the display of some options on the pdf stored in attachment of the tax closing entry. It is not needed anymore in account_reports in 17.0, because of the split between pdf and UI templates: the pdf templates' extra_options template only displays information when its options are explicitly set to a value. For example if only posted entries are displayed in the report; it's not written on the pdf ; only the fact of showing draft entries is mentioned when printing. Therefore, the pdf attached to the tax closing moves never shows any of these filters anyway.