[MERGE] Fix yml issue on mrp_subproduct

bzr revid: hmo@tinyerp.com-20100929101208-q9dx3byqko2hbpuw
This commit is contained in:
Harry (OpenERP) 2010-09-29 15:42:08 +05:30
parent 47867b8d71
commit 6913627b66
1 changed files with 1 additions and 1 deletions

View File

@ -164,6 +164,6 @@
I see that stock moves of Wood and Nails including Wooden Table are done now.
-
!python {model: stock.move}: |
move_ids = self.search(cr, uid, [('product_id','in',[ref("product_product_woodenchair0"),ref("product_product_woodentable0"),ref("product_product_wood0"),ref("product_product_nails0")])])
move_ids = self.search(cr, uid, [('product_id','in',[ref("product_product_woodentable0"),ref("product_product_wood0"),ref("product_product_nails0")])])
moves = self.browse(cr, uid, move_ids)
assert all(move.state == 'done' for move in moves), 'Moves are not done!'