Thursday, April 7, 2016
4 changes
Enhancements to existing features
Delivery slips and picking reports now show more useful order and shipment details, including customer references, sales order numbers, ordered versus delivered quantities, backorder messages, validation dates, carrier, and weight when available. The layout is simplified by removing less relevant columns and making customer/contact information clearer, helping customers and warehouse teams understand each shipment faster.
Original PR description
<b>Pad:</b> https://pad.odoo.com/p/r.m6TG6186VOSIxiCA <b>Task:</b> https://www.odoo.com/web?#id=22190&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720
Expense records will now show the commonly used Status grouping by default, making it easier for users to review and manage expenses by their current stage. This reduces extra clicks and improves day-to-day navigation in the Expenses app.
Original PR description
Description of the issue/feature this PR addresses: - Make "Status" as default group by in expense Task: https://www.odoo.com/web#id=23336&view_type=form&model=project.task&action=327&menu_id=4720 Pad: https://pad.odoo.com/p/r.5f34933aa894af1a81939229311ede72 Current behavior before PR: - Status is a group-by that is commonly used, currently hidden in "custom group" Desired behavior after PR is merged: - "Status" will be a default group by in hr_expense ## I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change removes unused code from the website tips component, reducing maintenance overhead without changing how users interact with the system. It helps keep the product codebase simpler and less prone to future issues.
Original PR description
opw-673946
The import wizard now analyzes the first rows of uploaded files to suggest only the most relevant matching fields, making setup faster and less error-prone. Users can still switch to an advanced mode to see all fields, and imports better handle varied date formats and currency or negative number formats.
Original PR description
… based on heuristic automatically try to detect type of columns from the first 10 rows of file: If column only contains integer, only show, int, float, monetary, m2o, o2m, m2m fields in wizard If column only contains true/false values, only show boolean fields in wizard etc add an advanced mode which is the same as previous import (show all fields) Support different date format and float value with currency as well as float value with parenthesis to reprensent negative value.