コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
5054 ビュー

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
4210
0
6月 23
2135
1
4月 23
1567
2
12月 19
15599
1
6月 19
5109