Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
4416 Zobrazení

in an onchange function i need to call a field(in order to get its value) from another class . any help please ?

Avatar
Zrušit
Nejlepší odpověď

You'll find lots of examples in addons folder

Example:-

  def onchange_partner_id(self, cr, uid, ids, part, context=None):
        part = self.pool.get('res.partner').browse(cr, uid, part, context=context)
        user = part.user_id and part.user_id.id or uid
        val = {
          'user_id': user
        }
        return {'value': val}
Avatar
Zrušit