i installed odoo 12
i need to add two more priority stars in the Pipeline form of the CRM module
by default there is three priority stars; and need to add two more
How can i add this
Please help me to solve this......
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
i installed odoo 12
i need to add two more priority stars in the Pipeline form of the CRM module
by default there is three priority stars; and need to add two more
How can i add this
Please help me to solve this......
Do the following,
1. Create a new custom module if you dont have already
2. Inherit crm.lead
3. Add the following code
class CrmLead(models.Model):
_inherit = "crm.lead"
priority = fields.Selection(selection_add=[('4', 'Fourth'), ('5', 'Fifth')])
4. in selection_add for Fourth and Fifth replace whatever text you want.
5. Install / upgrade custom module. It it add new priority start.
A good article to read
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
Create Mutlipile Pipelines
Solved
|
|
2
Sep 24
|
397 | |
|
3
May 24
|
415 | ||
|
1
Apr 24
|
869 | ||
|
0
Apr 24
|
175 | ||
|
1
Oct 23
|
1150 |