Se rendre au contenu
Menu
Cette question a été signalée
2 Réponses
5047 Vues

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

Avatar
Ignorer
Meilleure réponse

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

Avatar
Ignorer
Meilleure réponse

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

Avatar
Ignorer
Publications associées Réponses Vues Activité
0
mars 15
4204
0
juin 23
2127
1
avr. 23
1559
2
déc. 19
15593
1
juin 19
5103