Daily updates from Odoo
Tuesday, February 13, 2024
4 changes
Resolved issues and error corrections
This fix removes restrictions that prevented editing certain accounting fields on product templates when they weren't marked as purchasable. The fields for expense accounts and price differences are now always editable, simplifying the system and avoiding unnecessary complexity across modules.
Original PR description
Product template "property_account_expense_id" and "property_account_creditor_price_difference" fields must stay editable in cases even if not "can be puchased". Since it being readonly is trivial, better leave it writeable instead of implementing cross module readonly logic. Task: 3695677
The AI writing assistant option has been removed from the toolbar when images are selected, since AI-generated text would replace the image rather than enhance it. The AI option now only appears when working with text, making the toolbar more intuitive and preventing confusing user experiences.
Original PR description
Specification: This commit targets the scenario when an image is in the selection and the toolbar displays an AI option, which makes no sense as the generated response will replace the image. Desired behavior after PR is merged: The toolbar has been updated to show the AI option only for text-based scenario task-3733320
This update corrects the spacing of the activity button in the messaging interface. A previous change had added extra spacing to separate the activity button from communication-related buttons, but this spacing was not desired. This fix restores the original spacing to improve the visual layout of the interface.
Original PR description
In https://github.com/odoo/odoo/commit/e0491c1a623ffec19ed563679f853cc6d1c56d03 we changed the spacing of the activity button to dissociate it from buttons that are "message/communication" oriented. This spacing was unwanted so we need to revert it back. task-3730089 | Before | After | | --- | --- | | | | --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update corrects the visual styling of forecast icons in the sales inventory module to match other similar icons throughout the system. The icon color and hover behavior have been adjusted to provide a more consistent and intuitive user experience when interacting with forecast information.
Original PR description
This PR fixes an unconsistent forestack icon within the `sale_stock` module. Prior to this PR, the forecast icon was using a `text-primary` class, making it unconsistent regarding the other forecast icons. We also add a missing `cursor-pointer` class to fix the improve the hover state and the visual feedback of the link. task-3582145 Forward-Port-Of: odoo/odoo#140959