Monday, July 22, 2024
4 changes · saas-17.4
Resolved issues and error corrections
The event ticket registration report no longer shows an extra caption about remaining seats. This keeps attendee-facing registration information cleaner and avoids showing availability details that are not useful in that context.
Original PR description
Commit removes extra caption from the ticket registration report. It doesn't make sense to show attendees how many seats are left. task-4048321 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Demo mode no longer performs a real Peppol company existence check during registration, preventing unnecessary failures in test/demo environments. When a company is not yet registered on Peppol, partner verification now uses the production Peppol network by default for more consistent results.
Original PR description
Since the last refactor, when we are in demo mode, we still really check whether a company exists on Peppol network before registration. We should skip the check in demo mode. This commit mocks the company check when in demo mode, and also defaults to verifying partner on production Peppol network when the current company is not registered on Peppol. no task --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Fixed an issue where editing or deleting an already posted message could temporarily show an empty attachment in the conversation thread. This keeps message histories cleaner and avoids confusing users with attachments that were never actually added.
Original PR description
**Current behavior before PR:** When an already posted message is edited or deleted, an empty attachment is added to the thread. This empty attachment disappears upon page reload. **Desired behavior after PR is merged:** The issue of empty attachments appearing when a message is edited or deleted has been fixed. Task-4049791 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Creating a new spreadsheet now shows only one confirmation notification instead of two. This reduces confusion and keeps the document workflow cleaner for users.
Original PR description
Previously, creating a new spreadsheet triggered two notifications: one shown manually using the notification service and another from the action response. This PR fixes the issue by removing the notification displayed via the notification service. Since PR [1], calling `action_open_new_spreadsheet` sends a notification in the response with all the necessary data. Therefore, we don't have to manually display the notification using the notification service. [1] https://github.com/odoo/enterprise/pull/65397 Task: 4039997