Hi Henro,
If you want to retrive data of product supplier info.
1) You need to have browse record of product itself.
2) As product supplier info is one2many field than you need to iterate loop to get information of related supplier info.
Than, you can perform your next action for it.
For eg:
I already browse record of product.product model
Than you can get info like this:
for supplier_info in product.seller_ids:
print "Access info of any fields which is defined in supplier info table", suppplier_info.name
print "Product Name:::", suppplier_info.product_name
#so on...
@Note: seller_ids is one2many field defined in product model.
Hope this will helps you.
Regads,
Anil.
One2many fields are not feasible to put on the tree view, you might have multiple supplier records on one product and a list view cannot show all, but it will show only the number of suppliers. Thanks.