Hi, We are building our system where we have different classes of products, each with different attributes that cannot be mix together. To achieve this, we have created classes that inherit product.product by delegation
_inherits = {'product.product': 'product_id'} _name = product_by_delegation' _table = product_by_delegation' These classes have their own views Everything was working fine until we found out that in many places in the framework the user was seeing a view of product.product instead of that of product_by_delegation (i.e.: Link to a product in a sale order line display "product_product" not "product_by_delegation"). Though we handled to fix this issue, others are arising. My question is whether we have made a mistake in our architecture or if we are dealing with a limitation of the framework. Similar problem here http://www.openobject.com/forum/topic16736.html Thanks ------------------------ Jose A. Corbacho Trobz (www.trobz.com) -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=57745#57745 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
