hi guys, I want to show a field in the res.partner form view but the field is in another object. How can i do to show it in that view? Thanks a lot for your answers
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
3684
Vistas
Hi,
You must define a field type function in res.partner
. and in this function get information in another object.
def _get_other(self,cr,uid,ids,field,arg,context=None):
res={}
//your treatment
return res
_columns = {
'other': fields.function(_get_other, method=True, type='float',string='Info other'),
}
Thank You.
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
4
ene 24
|
24044 | ||
Attrs attribute
Resuelto
|
|
2
ene 24
|
2968 | |
|
0
ago 23
|
2816 | ||
|
5
sept 21
|
18253 | ||
|
3
ene 21
|
18647 |