OpenERP : Multiple module overriding onchange function
问题 I need to override onchange_partner_id function present in sale.order but I'm working on a system that already have a module overriding this function. I tried to write my own onchange_partner_id with similar code : def onchange_partner_id(self, cr, uid, ids, part): res = super(sale_order, self).onchange_partner_id(cr, uid, ids, part) // doing some stuff and adding it to res['value']['myfield'] return res But my function isn't read by OpenERP. So my question is, is it possible to have multiple