Wednesday, July 31, 2024
4 changes
Enhancements to existing features
Subscription tax estimates now use the current date instead of the original order date when checking taxes with Avalara. This helps portal totals reflect current tax rules or exemption changes, so customers see amounts closer to what they will actually be charged.
Original PR description
By default, we send date_order to Avatax when asking to calculate taxes. Avatax calculates the right taxes for that point in time. For non-recurring orders this is ok, but subscriptions are paid multiple times and date_order will remain the confirmation date of the subscription. This leads to confusion as taxes change over time (e.g. tax laws change or an exemption certificate is added with an effective date after date_order). Because customers are charged based on invoices we always charge them correctly, but the subscription total may not match what they're being charged. To solve this, always send the current date for subscriptions. This way customers can accurately see what they'll be charged in the portal. task-4078473
Knowledge hierarchy views are now loaded only when needed, reducing initial loading work. This should make the Knowledge app feel more responsive while preserving the same user-facing functionality.
Original PR description
We make the hierarchy view and its extensions to be lazy loaded. Task ID: `3546321`
The Discuss app now shows who is currently in an active call directly in the sidebar, including each participant's call status such as speaking, muted, or deafened. This makes it easier for users to understand call activity at a glance without opening additional views.
Original PR description
This commit provides the Call Participants in the sidebar of the Discuss app. When a call is active, the sidebar will show the participants of the call, as well as the status of the participants (e.g. isTalking, isMuted, isDeafened). https://github.com/odoo/odoo/pull/174965
Point of Sale users now receive a confirmation when WhatsApp or email marketing actions are successfully sent. They can also launch standalone marketing directly from a PoS order, making customer outreach clearer and easier to manage.
Original PR description
Before this commit: ========== - There is no confirmation notification while using WhatsApp and Email marketing. - Also, there is no option for standalone marketing from the PoS order form view. After this commit: ========== - Confirmation notification appears after successfully triggering WhatsApp and Email marketing. - Now, we have an option for standalone marketing from the PoS order form view. task-4037963