Skip to Content
Menu
This question has been flagged
2 Replies
5049 Rodiniai

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

Portretas
Atmesti
Best Answer

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

Portretas
Atmesti
Best Answer

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,
    }

Portretas
Atmesti
Related Posts Replies Rodiniai Veikla
0
kov. 15
4210
0
birž. 23
2134
1
bal. 23
1565
2
gruod. 19
15598
1
birž. 19
5109