Wednesday, September 11, 2024
5 changes
3 changes
Enhancements to existing features
Warehouse users now see only the transfers they selected when creating back-orders, reducing confusion during bulk processing. When quality checks are required, the system can separate those transfers and show all relevant quality prompts so validations are completed correctly.
Original PR description
Before this PR : ------------------------------------------------ - During multi-transfer validation, the back-order creation popup displayed all transfers. - If the quality app was installed, there was no filter to exclude transfers requiring quality checks. - Multi-transfer validation only displayed quality checks for one transfer and did not validate any transfers. After this PR: ------------------------------------------------ - Restructured the back-order popup to display only selected transfers in a dropdown menu. - Implemented a filter to exclude transfers requiring quality checks, visible only when the quality module is installed. - Enhanced the display and validation of all quality checks popups. Task-id : 3790406
Indian payroll users can now include payment advice when generating payment reports. This makes it easier to produce bank/payment documentation directly from the payroll workflow in both PDF and spreadsheet formats.
Original PR description
In this PR: - The payment report now includes an additional option called "Payment Advice" - If the payment advice is selected, you can generate the payment report in both PDF and XLSX formats using the buttons in the wizard. - Once the file is generated, the button is set as secondary otherwise, it remains primary Task - 3794859
Self-ordering in Point of Sale now uses configured IoT receipt printers as expected. This helps restaurants and shops keep receipt printing consistent across regular checkout and self-order flows.
Original PR description
Previously, the self order mode did not work with IoT printers for receipts, even if they were configured in the PoS config. After this PR, IoT receipt printers work as expected in self order mode. task-4128846
2 changes
Enhancements to existing features
This update improves the SEPA payment processing by making the UETR field display more intelligently based on the payment method and PAIN format version being used. This ensures users only see relevant fields for their specific payment configuration, reducing confusion and streamlining the payment entry process.
Original PR description
This commit will allow to hide the sepa uetr depending on the pain version and the payment method. task: 4167726
eBay recently changed how they format product URLs in their system, which was breaking the ability to match products correctly in Odoo. This update improves the matching process by using the product variant name as a backup method when the URL doesn't match. This ensures eBay orders continue to be processed smoothly even as eBay changes their technical formats.
Original PR description
eBay recently changed the URL they send in the viewitemURL. We found 3 different ways they send it, but there might be more. And the new ones can only be matched to the product template, not variant. We shouldn't have relied on this URL to match products in the beginning, but we can't refactor this flow in stable, instead, we fallback on the name of the variant, as it was created from eBay. opw-3934127 Forward-Port-Of: odoo/enterprise#69152