If I extend res.partner with two different custom addons how does Odoo prioritize which one applies first. For example, I might overwrite the original create method in both extensions like so:
class extend_partner(openerp.models.Model):
_inherit = 'res.partner'
@api.model
def create(self):
res = super(extend_partner, self).create(vals)
# do custom stuff
return res
What happens when I have two of the above extensions and the "#do custom stuff" code block conflicts or should be done in a certain order? Is there any place in the documentation that explains this in detail?