in an onchange function i need to call a field(in order to get its value) from another class . any help please ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
1
Responder
4401
Vistas
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}
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Registrarse