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
- Comptabilitat
- Inventari
- PoS
- Project
- MRP
This question has been flagged
2
Respostes
4851
Vistes
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,
}
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Registrar-seRelated Posts | Respostes | Vistes | Activitat | |
---|---|---|---|---|
|
0
de març 15
|
3852 | ||
|
0
de juny 23
|
1868 | ||
|
1
d’abr. 23
|
1365 | ||
|
2
de des. 19
|
15330 | ||
|
1
de juny 19
|
4854 |