[FIX] product: check if context is none in _set_standard_price before check context keys

This commit is contained in:
Christophe Matthieu 2014-06-02 15:48:24 +02:00
parent 6ed5b04146
commit caf4bf77bc
1 changed files with 2 additions and 0 deletions

View File

@ -458,6 +458,8 @@ class product_template(osv.osv):
def _set_standard_price(self, cr, uid, product_tmpl_id, value, context=None):
''' Store the standard price change in order to be able to retrieve the cost of a product template for a given date'''
if context is None:
context = {}
price_history_obj = self.pool['product.price.history']
user_company = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
company_id = context.get('force_company', user_company)