콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
6943 화면

Hi All,

How to create function field for many2one or one2many.

Can any one suggest me with example, please

Thanks


아바타
취소

Can you explain where you want to use it ?

베스트 답변

Hi Babu,

This can be implemented as follows. In old api,


def _get_default_address(self, cr, uid, ids, field_name, arg, context=None):
    res = {}
    partner_obj = self.pool.get('res.partner')
    for data in self.browse(cr, uid, ids, context=context):
        adr_id = False
        if data.partner_id:
            adr_id = partner_obj.address_get(cr, uid, [data.partner_id.id], ['contact'])['contact']
        res[data.id] = adr_id
    return res
_columns ={
        'default_address_id': fields.function(_get_default_address, type="many2one", relation="res.partner"),
}

 In new api, it will be as follows:



default_address_id = fields.Many2one(compute="_get_default_address", relation="res.partner")

아바타
취소
관련 게시물 답글 화면 활동
1
3월 23
2428
0
12월 22
3063
0
6월 21
2994
0
6월 20
5493
1
11월 19
2794