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

Whenever The Lead Form Loaded , The User_id(Salesperson) Is Automatically Populated in Lead Form . My Requirement Is To Make Empty user_id Field When Ever The Lead Form Load . How To Achieve This

아바타
취소
베스트 답변

Inherit the view definition and remove the fields you dont' require and see the changes

아바타
취소
베스트 답변

Hi,

You can do it by inheriting the crm_lead module and make user_id as False in defaults. 

class crm_lead(osv.osv):
    _inherit = "crm.lead"
    _defaults = {
        'user_id': False,
    }

아바타
취소
관련 게시물 답글 화면 활동
0
3월 15
4218
0
6월 23
2144
1
4월 23
1570
2
12월 19
15605
1
6월 19
5114