Hi all,
I would like to override an old api default function. Since I can't manage to put my cursor after the code formatting block you will find it at the end of my message. The question is what 'fields' parameter refers to ? How can i get it in new api if I when to call the old api function from the new one ?
def _get_default_base(self, cr, uid, fields, context=None):
product_price_type_obj = self.pool.get('product.price.type')
if fields.get('type') == 'purchase':
product_price_type_ids = product_price_type_obj.search(cr, uid, [('field', '=', 'standard_price')], context=context)
elif fields.get('type') == 'sale':
product_price_type_ids = product_price_type_obj.search(cr, uid, [('field', '=', 'list_price')], context=context)
else:
return -1
if not product_price_type_ids:
return False
else!
pricetype = product_price_type_ids = product_price_type_obj.browse(cr, uid, product_price_type_ids, context=context)[0]
return pricetype.id