Daily updates from Odoo
Tuesday, August 20, 2024
9 changes · master
New functionality added to Odoo
A new Vietnam localization report provides detailed tax information from accounting entries. This helps businesses operating in Vietnam review tax data more clearly and support local reporting needs.
Original PR description
- Create custom tax report which display the tax details of moves task-3558782
Enhancements to existing features
Spreadsheet side panels have been refreshed with a cleaner, more modern Odoo-style design across charts, filters, comments, and pivot-related views. This improves visual consistency and makes these configuration panels easier and more pleasant for users to work with.
Original PR description
Go through all the side panels and update their style to be prettier and more modern (and more odoo like). Task: 4107500
Website URLs are updated to a clearer, more human-friendly format across appointment booking, helpdesk knowledge and forum pages, rentals, subscriptions, and Studio. This improves the experience for customers and staff by making links easier to read, share, and recognize.
Original PR description
\* = {generator, helpdesk_forum, helpdesk_knowledge, sale_renting, sale_stock_renting, sale_subscription, studio}
This commit improves the readability of URLs by modifying them to a new, more human-friendly format.
Task-3820230URLs across social media integrations and dashboard document flows have been updated to a clearer, more human-friendly format. This makes links easier for users to understand, share, and recognize while navigating related pages.
Original PR description
\* = [social_facebook, social_instagram, social_linkedin, social_twitter, spreadsheet_dasboard_documents] This commit improves the readability of URLs by modifying them to a new, more human-friendly format. Task-3820230
URLs used in the Sign and quality control worksheet flows have been updated to a more readable format. This makes shared links and navigation easier to understand for users while preserving the existing signing and worksheet experience.
Original PR description
*= quality_control_worksheet This commit modifies existing URLs to the new format so that the URL's become more human readable. Task-3820230
Several sales-related areas now use more readable web addresses for customer and user flows. This makes links easier to understand, share, and recognize across Amazon sales, planning, rentals, and subscriptions.
Original PR description
*= {amazon, planning, renting, subscription}
This commit modifies existing URLs to the new format
so that the URL's become more human readable.
Task-3820230Accounting users can now use a dedicated credit card journal type that behaves like a bank journal while keeping setup simpler and avoiding irrelevant fields. Internal transfers during reconciliation are also made broadly available, helping teams handle money movements between accounts more smoothly.
Original PR description
Create a new credit card journal type that is similar to a bank journal, streamlining the configuration and avoiding useless fields. --- The Belgian localization added the possibility to perform internal transfer during the reconciliation; this option has been made general. odoo/odoo/pull/175315 task-3925608
Resolved issues and error corrections
Screen orientation changes for self-ordering IoT displays are now sent directly from the user interface instead of the server. This avoids connection issues where the backend could not reach the IoT box, helping display rotation changes apply reliably.
Original PR description
As we performed the screen orientation update request from the backend, IoT couldn't be reached. We now send the request from the JS. Community PR: [https://github.com/odoo/odoo/pull/177236](https://github.com/odoo/odoo/pull/177236)
Self-order kiosk setup now connects to IoT devices correctly when the database uses a secure HTTPS connection. This prevents connection errors during kiosk installation and helps keep setup reliable for users.
Original PR description
We were fetching through http, leading to errors when fetching from a https db. Now using `rpc` instead of `fetch` to request dynamically.