Daily updates from Odoo
Sunday, December 27, 2015
4 changes
Resolved issues and error corrections
This fixes problems in the accounting refund process that could cause errors when handling invoice refunds. The change helps users complete refund workflows more reliably and reduces interruptions caused by incorrect text or formatting handling.
Searching accounting move lines for records without an invoice now returns the correct matches instead of an empty result. This improves reliability for accounting workflows and reporting that depend on identifying uninvoiced entries.
Original PR description
This PR fixes bug #4857 in the **master** branch:
```
self.pool['account.move.line'].search(cr, uid, [('invoice', '=', False)])
```
now returns the good result, instead of always returning []. Please refer to the bug report for a detailed scenario of the bug.
For performance and code-simplification, I decided to make the function field 'invoice' store=True. As it implies a "-u account", I propose this PR only on the master branch.
This PR also includes a code clean-up in the _invoice() method that compute the field 'invoice'.The Notes app now avoids showing duplicate “This week” stages for administrators. It also adds clearer stages for shared notes and demo-user notes, making note organization easier to understand.
Original PR description
Task: https://www.odoo.com/web#id=10795&view_type=form&model=project.task&action=327 Pad: https://pad.odoo.com/p/openerp-project.task-OAKV36MWN5 Description: [FIX] note: Fixing issue of Two 'This weeks' stagies for Administrator user. [ADD] note: 1- 'Shared' stage for user to identify notes which are not created by him/her but added as follower. 2- Stage named 'New' for Demo user.
Pricelist rules now correctly consider how specific a product category is when choosing the applicable price. This helps businesses avoid incorrect pricing when products belong to nested categories, ensuring more accurate sales prices.
Original PR description
Fix rewrote for master, see [1] for details. [1] https://bugs.launchpad.net/ocb-addons/+bug/1169074