[FIX]sale_stock: remove assert test on unit_price between move and sol which is not relevant

bzr revid: csn@openerp.com-20130911124126-1qejdj8r8w4yhs6i
This commit is contained in:
Cedric Snauwaert 2013-09-11 14:41:26 +02:00
parent c8d4a5b316
commit ca9abec55b
1 changed files with 0 additions and 1 deletions

View File

@ -70,7 +70,6 @@
assert move.product_packaging.id == order_line.product_packaging.id,"Product packaging is not correspond."
assert move.partner_id.id == order_line.address_allotment_id.id or sale_order.partner_shipping_id.id,"Address is not correspond"
#assert move.location_id.id == location_id,"Source Location is not correspond."
assert move.price_unit == order_line.product_id.standard_price or 0.0,"Price Unit is not correspond"
-
Now, I dispatch delivery order.
-