Daily updates from Odoo
Friday, May 3, 2019
7 changes
Enhancements to existing features
This update restores clearer formatting for partner selection fields that show addresses, so only the main name line is visually highlighted. It keeps long single-line values from being highlighted incorrectly when they wrap, improving readability without bringing back the previous display issue.
Original PR description
Rev. a3489be33 removed this feature to fix a bug (when the single line many2one, e.g. a product, is too long and displayed over several lines). However, we (fp) still want this for res_partner many2ones with show_adress. This rev. re-introduced the feature without re-introducing the bug. 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 search filter label for field views has been corrected so users can distinguish between field status and field type. This removes duplicate or confusing filter names, making it easier to find the right fields in Odoo settings.
Original PR description
Description of the issue/feature this PR addresses: Improvement on Search filter on Field's view Current behavior before PR: Two filter with same string  Desired behavior after PR is merged: Correct Filter string  -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Printable survey pages no longer show the Retry button, keeping printed or saved survey views cleaner and less confusing. The button can still appear where retrying is relevant, such as reviewing answers online.
Original PR description
**Description of the issue/feature this PR addresses**:
- Task: https://www.odoo.com/web#id=1967500&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720
- Pad: https://pad.odoo.com/p/r.9f64c9754a0ecb15d59f88e0b49b8bed
**Description**
-Previously, the Retry button was unnecessarily visible on the printable view of the survey.
-This commit fixes this by removing template call to retake_survey_button from printable view.
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe debug menu now provides direct access to reports for the current model. This saves administrators time by avoiding a separate trip through technical settings and manual searching.
Original PR description
Description of the issue/feature this PR addresses: This extends the debug manager so that it is easy to manage the reports of the current model. Current behavior before PR: To manage reports to you have to go to Settings -> Technical -> Reports and then search for the respective model. Desired behavior after PR is merged: Now you can access the respective reports directly via the debug manager. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Resolved issues and error corrections
The project tag previously shown as "NeedAssistance" is corrected to "Need Assistance". This improves readability and consistency for users working with project tags.
Original PR description
Description of the issue/feature this PR addresses: - Task: https://www.odoo.com/web#id=1891795&action=333&active_id=131&model=project.task&view_type=form&menu_id=4720 - Pad: https://pad.odoo.com/p/r.2fd926d0585e983d48873801ed19c701 Current behavior before PR: There is a tag named as "NeedAssistance". Desired behavior after PR is merged: There will be a tag named as "Need Assistance". -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a typo in the Accounting area and refreshes related translation text files. The change is minor and helps keep wording consistent for users across languages.
Original PR description
fixed typo models.py
This fix prevents an error when opening an employee's private address form after installing the HR and city address features. It ensures the partner form includes the needed parent address reference so users can edit private address details without disruption.
Original PR description
Steps to reproduce: - Install hr and base_address_city - Edit an employee - In private info, set a private address - Open private address form from the employee form Traceback because parent_id is undefined. The base_address_city module override a part of res.partner view form to change the city readonly modifier. This override adds a domain in which appears parent_id, but the field is not present in the view. Related commit 526bfca3afc2dc4bcc2565912705be4cf738267d 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