Thursday, July 25, 2024
3 changes · 17.0
Resolved issues and error corrections
Delivery slips now preserve the line breaks and formatting entered in a product's delivery order description, even after the delivery is validated. This keeps customer-facing delivery documents looking professional and consistent.
Original PR description
Steps to reproduce: - Edit any product's 'Description for delivery orders' (inventory tab) - Create a delivery for this product (or confirm sale order to create one automatically) - Print delivery slip (Correct formatting) - Validate delivery - Print delivery slip once more (Description loses linebreaks) This is only for looks, but it's a document the end user will see so there are concerns about it looking unprofessional. This formatting error is due to us not being able to use a field element after remaking the order lines to group related products in python. opw-4040127 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes repair operation types from the list of picking types that can be selected when setting up quality control points. This prevents user confusion since quality checks cannot be created for repair operations, making the interface clearer and more intuitive.
Original PR description
Description of the issue/feature this PR addresses: 1 - Create a quality.point and add a repair operation type in the 'picking_type_ids' field 2 - Create a repair picking Current behavior before PR: No QC is created. This is expected because of https://github.com/odoo/enterprise/pull/59509 - only available since 17.3 Desired behavior after PR is merged: Exclude “repair” operation types from the domain of the “picking_type_ids” field to avoid confusing the user. opw-4052819
This fix corrects a display problem in the Chilean EDI module where HTML code was appearing as plain text in message conversations instead of being properly formatted. The issue was caused by missing markup formatting in post messages, which has now been resolved to ensure messages display correctly.
Original PR description
Before this commit, some Markup were missing in some post message which resulted in some html to be displayed in the chatter. task: 4041892 Community: https://github.com/odoo/odoo/pull/173375 Forward-Port-Of: odoo/enterprise#67255 Forward-Port-Of: odoo/enterprise#66767