Merge lp:~zaber/openobject-addons/bom-structure-domain into lp:openobject-addons/6.1

Proposed by Don Kirkby
Status: Needs review
Proposed branch: lp:~zaber/openobject-addons/bom-structure-domain
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
mrp/mrp_view.xml (+1/-1)
To merge this branch: bzr merge lp:~zaber/openobject-addons/bom-structure-domain
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+148557@code.launchpad.net

Description of the change

Bug fix for lp:1125523 that just switches from active_ids to active_id.

To post a comment you must log in.

Unmerged revisions

7153. By Don Kirkby

[FIX] Correct domain filter on link from Product screen to Product BoM Structure.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'mrp/mrp_view.xml'
2--- mrp/mrp_view.xml 2012-10-05 07:47:57 +0000
3+++ mrp/mrp_view.xml 2013-02-14 20:49:35 +0000
4@@ -986,7 +986,7 @@
5 <act_window
6 id="action_product_bom_structure"
7 name="Product BoM Structure"
8- domain="[('product_id', 'in', active_ids),('bom_id','=',False)]"
9+ domain="[('product_id', '=', active_id),('bom_id','=',False)]"
10 context="{'default_product_id': active_id}"
11 view_type="tree"
12 view_mode="tree"