Daily updates from Odoo
Tuesday, July 9, 2019
4 changes · master
Resolved issues and error corrections
This fix prevents the web interface from crashing when a user clicks an editable list row that contains only read-only fields and then presses Tab. It improves day-to-day form navigation reliability without changing business workflows or adding new features.
Original PR description
Let's assume an editable list with a row containing only readonly fields. Before this rev., if the user clicked on this row and then pressed TAB, it crashed. The crash occurred in historical code that now seems to be useless, so we simply removed it. 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
This fixes the visual appearance of tags on payment records so they display as intended. The change removes styling that made the tags look incorrect, improving clarity for users reviewing payments.
Original PR description
**Description of the issue/feature this PR addresses**:
- Task: https://www.odoo.com/web#id=2033286&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720
- Pad: https://pad.odoo.com/p/r.ce7c1e77cbc551b17068f56edcd0b9bd
**Description:**
- Tags didn't look the way they were supposed to. Fixed that.
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThis fix prevents an error when stock accounting entries are created with an unexpected default setting in the background. It helps ensure inventory valuation and related accounting postings complete reliably without disrupting users.
Original PR description
Default "type" key in the context leads to a traceback. task-2033390
This update ensures PDF files added through the Documents workflow can correctly create new invoices after recent accounting changes. It supplies the required invoice defaults so users avoid errors when attaching PDFs to draft invoices.
Original PR description
Following the refactor of accounting, giving the default type and default journal is required when adding a PDF attachment to a new invoice ( https://github.com/odoo/odoo/commit/bc131c0cfb51c953de8ec41fb820c8c7831eefb5#diff-7fb614c57de345cbe8f907c7237020bfR65 ) This commit fixes this issue when adding a PDF in documents' workflow.