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
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
1
Rispondi
4357
Visualizzazioni
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}
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati