Wednesday, August 29, 2018
3 changes
Enhancements to existing features
The portal task controller was simplified by removing old compatibility code that is no longer needed in the current version. This reduces maintenance complexity and helps keep the portal codebase cleaner without changing the expected business workflow.
Original PR description
Some code was kept v11 for retro-compatibility. This is time to clean it to have something clean in master. https://www.odoo.com/web#id=1838048&view_type=form&model=project.task&action=333&active_id=965&menu_id=4720 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update renames two quality control point options to use clearer business language. Users will now see “Text” instead of “Dummy” and “Record lot/serial numbers” instead of “Register Component's material,” making setup and shop-floor instructions easier to understand.
Original PR description
Task :
https://www.odoo.com/web#id=58645&view_type=form&model=project.task&action=327&menu_id=4720
Pad :
https://pad.odoo.com/p/r.a55f70bde73123fa5e87de0b8a02b8c7
Description of the issue/feature this PR addresses:
1) In Quality Control Point, rename:
- Dummy > Text
- Register Component's material > Record lot/serial numbers
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prResolved issues and error corrections
This fix makes JavaScript errors easier to find and understand in automated build logs. It helps teams diagnose failed tests faster by showing important browser error details directly near the related failure instead of only in full logs.
Original PR description
Since chrome headless have been merged, js error messages are difficult to read: some information was missing or only displayed in full all log. All console.error() will now be displayed in build details, and will appear just before the python assertion. XMO's improvement will also be used on all log: Using module and classname of the class calling phantomJS. Also: some small improvements on error message to make them easier to read