hi everyone,
I have a class
class product_extend(osv.osv):
def convert(....):
return result
product_extend()
So how I can convert() method in another class, I tried this in product_product class as normally in python syntax but get error when run time
test = product_extend()
test.convert()
Does anyone have any idea ? I will appreciate.
Thanks,
Duy.