From 7e4ae4c2c184a26b11268c6e90d5e08df41c7160 Mon Sep 17 00:00:00 2001 From: Josse Colpaert Date: Tue, 17 Sep 2013 11:28:54 +0200 Subject: [PATCH] [FIX] Add print in fifo_price bzr revid: jco@openerp.com-20130917092854-qhws12yu05potal5 --- addons/purchase/test/fifo_price.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/purchase/test/fifo_price.yml b/addons/purchase/test/fifo_price.yml index 7233f36ff81..8ec63090295 100644 --- a/addons/purchase/test/fifo_price.yml +++ b/addons/purchase/test/fifo_price.yml @@ -359,5 +359,5 @@ !python {model: product.product}: | quant_obj = self.pool.get("stock.quant") quants = quant_obj.search(cr, uid, [('product_id','=',ref("product_fifo_icecream"))]) - print "Quants:", [(x.qty, x.location_id.name, x.in_date, x.cost) for x in quant_obj.browse(cr, uid, quants)] + print "Quants:", [(x.qty, x.location_id.name, x.in_date, x.cost, x.in_date) for x in quant_obj.browse(cr, uid, quants)] assert self.browse(cr, uid, ref("product_fifo_icecream")).standard_price == 65.0, "Product price not updated accordingly. %s found instead of 65" %(self.browse(cr, uid, ref("product_fifo_icecream")).standard_price,)