Skip to Content
Menu
This question has been flagged
1 Reply
3719 Views

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

Avatar
Discard
Best Answer

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.

Avatar
Discard
Related Posts Replies Views Activity
4
Jan 24
24095
2
Jan 24
2999
0
Aug 23
2848
5
Sep 21
18330
3
Jan 21
18779