Daily updates from Odoo
Thursday, June 9, 2016
3 changes · master
Resolved issues and error corrections
The CRM opportunity report now uses a clearer name for revenue that includes probability weighting. This reduces confusion with the standard expected revenue field on leads and helps users interpret pipeline reports more accurately.
Original PR description
The expected revenue in opportunity.report is in fact the expected revenue with probability. It was confusing with the field expected revenue in crm.lead opw:678062
The depreciation line action button now uses color to show whether its related accounting entry is posted, draft, or missing. This helps finance users quickly spot which depreciation entries still need attention and reduces confusion when creating or reviewing moves.
Original PR description
The color of the button "create_move" in a depreciation line is green if the related move is posted, orange if it exists but not posted and red in the other case. opw:678905
This fixes a minor internal warning in the translation tooling by making a parent-node check more explicit. It helps keep automated checks and logs clean without changing user-facing behavior.
Original PR description
Specifically, replace `not node.getparent()` by `node.getparent() is None`.