Daily updates from Odoo
Wednesday, August 22, 2018
4 changes
Resolved issues and error corrections
This fix restores a helpful stock inventory error message that tells users which product is causing a problem. It helps teams resolve inventory validation issues faster, especially when working with large inventories.
Original PR description
Restore bbc9b329b5962c0e208a7abe33d5d853aaa49fc2 after it has been unintentionally wiped out in ba5918ffcbe5fe9155308c53e014e5e93c588ca6 See also: https://github.com/odoo/odoo/commit/ba5918ffcbe5fe9155308c53e014e5e93c588ca6#commitcomment-30056673 **Description of the issue/feature this PR addresses:** - Very user **un**friendly error message (not helpful at all) in stock inventories **Current behavior before PR:** - The user has almost no chance to find the error in reasonable time if the inventory is somewhat larger **Desired behavior after PR is merged:** - The user gets to know the offending product and can review his pending inventories more specifically. **Note:** Please do not close, even if not immediately accepted (`wishlist` tag). This PR is meant to be carried along and actively maintained, until this semantic will be completed this way or another. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr @xoe-labs
This fixes issues when editing required fields and multi-line text boxes inside embedded list records. Users can now move between lines reliably with Enter or Tab, and text areas size themselves correctly as content changes, reducing editing friction and display glitches.
Original PR description
TASK: 1869469
PDF previews now use the proper viewer styling from the core web module instead of depending on the Manufacturing module. This makes PDF documents easier to read and consistently sized for users even when Manufacturing is not installed.
Original PR description
Description of the issue/feature this PR addresses: I use the pdf_viewer widget,without the mrp module installed.The pdf is displayed with a very small size. mrp module has a scss file make the pdf_viewer better.I think this file should be put in web module.So then we can use pdf_viewer well without mrp installed. Current behavior before PR: <img width="1103" alt="pic1" src="https://user-images.githubusercontent.com/5561864/44310011-f9f05580-a401-11e8-98d3-9f29a6e3a08e.png"> Desired behavior after PR is merged: <img width="1118" alt="pic2" src="https://user-images.githubusercontent.com/5561864/44310012-ffe63680-a401-11e8-8340-923da347da05.png"> -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an error that could block payment of supplier invoices when cash basis accounting is enabled. Payments can now be completed without the system failing due to an internal date comparison issue.
Original PR description
Steps to reproduce: 1.- Configure your instance to generate cash basis moves 2.- Generate a new supplier invoice 3.- Try make the payment of that invoice. I get the next error: `TypeError: '>' not supported between instances of 'datetime.date' and 'str'` Was fixed like https://github.com/odoo/odoo/commit/960360afe478a8f7b9c456721b5591154952a37d#diff-dd671a54296b170ea1393dca1a5f7798R1612  -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr