Thursday, August 13, 2020
11 changes · master
Enhancements to existing features
Journal items now consistently carry a currency value across accounting-related workflows, including payments, reconciliation, expenses, and point of sale scenarios. This improves financial data consistency and reduces the risk of missing or ambiguous currency information in reports and accounting records.
Original PR description
task: 1930680 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
New users will have their timezone preference automatically set to match their browser the first time they log in. This reduces manual setup and helps ensure dates, times, and schedules appear correctly from the start.
Original PR description
With this commit, the timezone (in the user's preferences) is automatically set to the timezone of its browser the first time this user logs in. Task 2207715
This update refreshes the expense workflow to make it easier for employees and accounting teams to create, review, and manage expenses. It also improves related sales expense handling, helping businesses process reimbursable and billable expenses more smoothly.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Website managers can choose additional product fields to display on product pages, such as internal references, barcodes, or custom fields. This helps shoppers and staff see useful product information directly online, with downloadable links for file-based fields like catalogs or technical documents.
Original PR description
You can in website's settings, add some extra fields to be shown on the product page. E.G. if you want to have the internal code, the barcode, or even a custom field In case of a binary field, 'Technical documentation' or 'Catalog', you will have a dowload link. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Website editors can now search the Blocks tab to quickly find the snippet they need. Empty snippet groups are hidden during filtering, making page building faster and easier to navigate.
Original PR description
This PR attempts to add a search bar at the top of the "Blocks" tab to filter editor snippets. Snippet groups with no results are hidden too. Task ID 2309832
Spreadsheet pivot tables now include every possible subgroup under each parent group, even when no current records exist for that combination. This makes spreadsheet reports more complete and ready to fill in automatically as new business data is added over time.
Original PR description
…group
Purpose
=======
Let's consider a two-level pivot (e.g. grouped by country > salesteam),
In a regular pivot view, if there are no record in the group
country 1 > salesteam 2, salesteam 2 won't appear at all in the view.
```
expected revenue
country 1:
salesteam1: 2
country 2:
salesteam2: 3
```
However, in spreadsheet, pivot cells are expected to be filled overtime,
as new records are created. Therefore, empty groups should also be added
from the start.
```
expected revenue
country 1:
salesteam 1: 2
salesteam 2:
country 2:
salesteam 1:
salesteam 2: 3
```
Specification
=============
The set of values in each subgroup should be the union of all possible
values (across all parent groups).
The same order as a read_group should be used to order this set of values.
Task 2285172
Co-authored-by: fleodoo <fle@odoo.com>Journal items now always receive a currency value across accounting flows such as reconciliation, asset moves, revaluation reports, and SEPA direct debit tests. This improves consistency in financial records and helps avoid issues in multi-currency accounting processes.
Original PR description
task: 1930680
The expense workflow has been refined to make day-to-day expense handling clearer and easier for users. This improves usability around expense processing, helping employees and finance teams work more efficiently.
Original PR description
TaskID: 2303951
The signing screen now hides space-consuming elements on smaller mobile screens. This makes it easier for users to review and sign documents from a phone without clutter getting in the way.
Original PR description
Before this commit, some elements took too much place on mobile. This commit hide them when the resolution is too small. taskid: 2313169
Resolved issues and error corrections
The website app now correctly includes a required supporting component so it can install successfully. This prevents setup failures for websites and blogs, while a separate performance query-count concern remains under investigation.
This update fixes several display and usability issues across online event pages, including event cards, menus, agendas, tags, reminders, and ticket registration. It makes event information easier to read on desktop and mobile, prevents agenda issues when sessions lack dates, and improves handling of event links and labels.
Original PR description
Task ID-2314778 PR #55625 Forward-Port-Of: #55642 Forward-Port-Of: #55625