Guys, what is the difference between
product_id = fields.Many2one('product.template')
and
product_id = fields.Many2one('product.product')
If I'm using to read data 'product.template' getting different information than if I'm reading from database using 'product.product'
With 'product.product' everything seems to be OK/correct, when I'm using 'product.template' everything is completely wrong.
It shouldn't be the same ?
Just asking :)