Daily updates from Odoo
Tuesday, June 10, 2025
2 changes · master
Enhancements to existing features
Backend text colors have been adjusted to make regular text easier to distinguish from muted text. This improves readability across areas such as Documents, Knowledge, manufacturing work orders, spreadsheets, barcode flows, navigation, and settings without changing the muted text style.
Original PR description
The goal is to increase contrast between the global text-color and text-muted in the backend while keeping the current text-muted color. This is done because the contrast was too small between these two colors and is an opportunity to increase the overall contrast. The contrasting color for headings and active components is set to `$black` (#000 and #FFF darkmode). To avoid the secondary buttons looking "disabled" the color is also adapted. task-4756587 Community PR: https://github.com/odoo/odoo/pull/209125
Odoo now supports selling the same Amazon product through both Fulfillment by Amazon and merchant fulfillment at the same time. This ensures stock levels are synchronized correctly, so businesses can keep selling from their own inventory when Amazon stock runs out.
Original PR description
Amazon allows you to sell products both in FBA and in FBM (as a fallback when Amazon does not have stock anymore), but currently this configuration is not working with Odoo because when an offer is considered FBA, then the FBM stock is forced to 0 in Amazon. This commit removes this limitation, allowing the stock to be correctly synchronized with Amazon in all cases (FBA, FBM, both FBA and FBM). See also: - https://github.com/odoo/documentation/pull/12901 - https://github.com/odoo/upgrade/pull/7507 task-4092410