[IMP] product:change pricelist

bzr revid: aag@tinyerp.com-20111227122521-bnkkl7eeyr3xz8od
This commit is contained in:
Atik Agewan (OpenERP) 2011-12-27 17:55:21 +05:30
parent 07b5052117
commit 5a5f1793e8
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@
new_price = result[ref("product_product_pc1")].values()
product_obj = self.pool.get("product.product")
ctx = context.copy()
ctx.update({'pricelist': ref("product.product_price_list_end_year"), 'quantity': 1})
ctx.update({'pricelist': ref("product.list0"), 'quantity': 1})
product_price = product_obj.browse(cr, uid, ref("product_product_pc1"), context=ctx).price
assert new_price[0] == product_price,"30% discount is not given on sale price of product at end of year"
-