From 5e4f1f5ab325c3446de68a933e54049c9771e541 Mon Sep 17 00:00:00 2001
From: Christophe Simonis <chs@odoo.com>
Date: Thu, 26 May 2016 17:38:50 +0200
Subject: [PATCH] [FIX] stock_account: use new api to call method
 `get_price_unit`

---
 addons/stock_account/stock_account.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/stock_account/stock_account.py b/addons/stock_account/stock_account.py
index e98161804d4b..798e8fdda5d4 100644
--- a/addons/stock_account/stock_account.py
+++ b/addons/stock_account/stock_account.py
@@ -439,7 +439,7 @@ class stock_move(osv.osv):
                     tmpl_dict[product_id] = 0
                     product_avail = qty_available
                 # if the incoming move is for a purchase order with foreign currency, need to call this to get the same value that the quant will use.
-                price_unit = self.pool.get('stock.move').get_price_unit(cr, uid, move, context=context)
+                price_unit = move.get_price_unit()
                 if product_avail <= 0:
                     new_std_price = price_unit
                 else:
-- 
GitLab