跳至内容
菜单
此问题已终结
2 回复
4920 查看

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
4015
0
6月 23
2006
1
4月 23
1460
2
12月 19
15459
1
6月 19
4957