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
- Apskaita
- Atsarga
- PoS
- Project
- MRP
This question has been flagged
1
Atsakyti
3688
Rodiniai
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.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
RegistracijaRelated Posts | Replies | Rodiniai | Veikla | |
---|---|---|---|---|
|
4
saus. 24
|
24048 | ||
Attrs attribute
Solved
|
|
2
saus. 24
|
2970 | |
|
0
rugp. 23
|
2819 | ||
|
5
rugs. 21
|
18258 | ||
|
3
saus. 21
|
18661 |