Daily updates from Odoo
Thursday, July 18, 2019
3 changes
Resolved issues and error corrections
This fixes a display issue in the Lunch app where the pager could overflow when showing amounts. Users should see cleaner, more reliable navigation in lunch cash movement views, especially when amounts take up more space.
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
Odoo Studio now creates related fields with the same storage behavior as the field they reference. This prevents unexpected data storage and makes field setup more predictable for users configuring apps in Studio.
Original PR description
Task: https://www.odoo.com/web#id=1985710&action=327&model=project.task&view_type=form&menu_id=4720 pad: https://pad.odoo.com/p/r.ca4debca71cbd375ce888e00caa286f8 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
The grid view now shows its empty-state help message using the same rendering approach as the rest of the grid. This prevents display issues caused by mixing incompatible rendering methods and improves reliability for users viewing empty grids.
Original PR description
The grid view is the only view to use snabbdom in order to render the view, the code used in order to support the noContentHelp was written using jquery which is incompatible with snabbdom virtual dom. This commit simply converts the noContentHelp rendering to snabbdom.