Daily updates from Odoo
Monday, May 20, 2019
3 changes
Enhancements to existing features
Printed report filenames now use the user's translated report name, matching the translation already shown inside the system. This makes downloaded files clearer and more consistent for users working in different languages.
Original PR description
The report name was already translatable but not the filename opw-1964505
Resolved issues and error corrections
Fixes an issue in Odoo Sign where trying to open a PDF through an image-only route could cause a crash. PDFs are now handled through the correct content path, improving reliability when users access signed documents.
Original PR description
[FIX] sign: fix crash trying to access pdf through image route
Code cleanup and technical improvements
Survey responses now use a more general completion step when an answer is marked as done. This makes it easier for related apps, such as employee skills, to add their own actions when surveys are completed without changing the user-facing survey flow.
Original PR description
…gement As other modules than survey (namely hr_skills) now need a hook to add specific behavior when a survey answer is marked as 'done', we removed the '_send_certification' method and replaced it with a '_mark_done' method. It will make it easier to override this method as it has a more generic meaning. 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