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

I want to modify the search method of a many2one field in OpenERP 7. I am setting up context values in view that has the field.

But the value isn't getting passed to the search method.

What is the solution? Is this a known issue? What are the other ways possible?

아바타
취소
베스트 답변

To modify the search method on the m2o field you can override the name_search method. eg.

def name_search(self, cr, user, name='', args=None, operator='ilike', context=None, limit=100):
    vals = (CLASSNAME, self).name_search(cr, user, name=name, args=args, operator=operator, context=context, limit=limit)
    #do your code
    return list # e.g[(id, 'name')]

by overriding the name_search method you can extend your search for m2o type field.

Or you can refer : https://doc.openerp.com/v6.1/developer/03_modules_2/#openerp.osv.orm.BaseModel.name_search

아바타
취소
작성자 베스트 답변

Refer to: https://bugs.launchpad.net/openerp-web/+bug/1209295 for solution.

아바타
취소
관련 게시물 답글 화면 활동
0
3월 21
3665
0
3월 15
3970
0
3월 15
3732
3
2월 25
36209
2
2월 25
9074