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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
2
답글
5067
화면
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 |