Ok, thanks.

I'm still trying to figure out how to solve this using one of the two 
inheritances. There's no inheritance relationship between the two objects. They 
simply refer to each other in different meanings.

Suppose I had something like this:

class House(osv.osv):
  _name = 'house.house'
  _columns = {
    inhabitants : fields.one2many('house.Person'),
    primary_inhabitant : fields.many2one('house.person'),
  }

class Person(osv.osv):
  _name = 'house.person'
  _columns = {
    home : fields.many2one('house.house'),
  }

How would I fix this? (sorry if I'm testing your patience)





_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman/listinfo/tinyerp-users

Reply via email to