Daily updates from Odoo
Wednesday, August 7, 2024
5 changes
Enhancements to existing features
The Point of Sale configuration screen has been updated to provide a clearer and more user-friendly layout. This should make it easier for teams to find and adjust settings, especially around connected POS devices.
Original PR description
Task ID: 4066917 Related: https://github.com/odoo/odoo/pull/174827
The barcode lookup scanner has been moved into a shared product module so it can be reused beyond Point of Sale, including website sales. Stock barcode views were also standardized, giving users a more consistent product lookup experience across workflows.
Original PR description
*: pos_barcodelookup, stock_barcode_barcodelookup product_barcodelookup : - We have shifted the barcodeScanner widget in product_barcodelookup as now we don't need to show just in pos but also in website_sale module. pos_barcodelookup : - barcodeScanner widget is removed and shifted to product_barcodelookup module. stock_barcode_barcodelookup : - here we don't need the widget in the normalized form view so just removed that for the stock_barcode module. - made the normalized form view similar to what in pos module to make it standard in all modules task: 3977931 Related PR (Community) : https://github.com/odoo/odoo/pull/172217
The Bill of Materials overview now takes work center availability into account when simulating production planning. This helps manufacturing teams get a more realistic view of when products can be made and where capacity constraints may affect schedules.
Original PR description
Consider workcenters availability in BoM Overview. task: 3935589
Users can now switch the Discuss sidebar into a more compact view using a new arrow button next to Start a meeting. The preference is saved on the device, helping users keep their workspace organized between sessions.
Original PR description
This commit adds a new "arrow" button in discuss sidebar panel, next to "Start a meeting". Clicking on this button enables a more compact version of discuss sidebar. The toggling of this mode is persistent on the device, thanks to local storage. https://github.com/odoo/odoo/pull/174985
Asset-related screens now support keyboard shortcuts for common actions such as confirming, computing depreciation, reconciling, and viewing posted entries. This makes frequent asset management tasks faster and easier for users who prefer keyboard navigation.
Original PR description
Make the asset form view easier to use by mapping its action buttons to hotkeys: - Confirm -> ALT + Q - Compute Depreciation -> ALT + D - Save as Model -> ALT + M - Cancel Asset -> ALT + X - Reconcile -> ALT + R - Create Asset -> ALT + C - Posted Entries -> ALT + P related community PR: https://github.com/odoo/odoo/pull/175424 **task**-4079684