Thursday, April 4, 2019
5 changes · master
Enhancements to existing features
Sales orders, quotations, portal pages, emails, and printed reports were refined with clearer labels, better layout, and more consistent wording. These changes improve readability for customers and sales teams, making key details like pricing, expiration dates, payment terms, and delivery information easier to find.
Original PR description
This merge changes lot of small things in sale modules. The 3 main points are - Sales Orders form view: reorganize fields for a better usability and renaming labels - Sale PDF report: renaming labels and titles, moving some report section - Quotation Portal: improving style, moving section and renaming labels Task-1920476
Accounting users can now edit journal entry lines directly from the list view, reducing the need to open individual records. When lines are grouped by journal entry, additional action buttons make common workflows faster and easier to access.
Odoo Studio now lets users choose sum or average totals for columns directly from the list view editor sidebar. This makes it easier for business teams to build reporting-friendly list views without developer help.
Original PR description
Task: https://www.odoo.com/web#id=1871185&action=327&model=project.task&view_type=form&menu_id=4720 Pad: https://pad.odoo.com/p/r.50aa078e4fbb1b4e7c5207f4f969a9a4
Accounting users can now preview a journal entry's attached documents directly from the list of accounting lines. This makes it easier to review supporting files without switching to the full form view, improving day-to-day accounting workflow efficiency.
Resolved issues and error corrections
Creating a new purchase quotation from a purchase agreement could fail with an error. This fix removes unnecessary manual rounding so Odoo can handle monetary rounding automatically, allowing the quotation process to complete normally.
Original PR description
- in purchase there are 3 fields that computes by '_amount_all', so it is called 3 times. but, round method has 'ensure_one' therefore it gives singleton error. - So, removed rounding as there is need of rounding explicitly since these are monetary fields which will be rounded automatically. Related to Issue: 1948645 Description of the issue/feature this PR addresses: Traceback when creating new quotation from purchase aggrements Current behavior before PR: Traceback when creating new quotation from purchase aggrements Desired behavior after PR is merged: Traceback resolved when creating new quotation from purchase aggrements Issue: https://www.odoo.com/web#id=1948645&action=327&model=project.task&view_type=form&menu_id=4720 Pad: https://pad.odoo.com/p/r.4ee8640ed26691650fc5c75a86206211 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr