Is it based on the "Expected Close Date" field in CRM then you miss the target date or is it something else?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
If the lead had an "Expected Closing" date (deadline), report how many days past this date the lead was eventually closed.
"How well are Salespeople meeting their close deadlines (if any)?"
How can you discover this answer yourself?
1. Review the Field (Fields Menu in Developer Mode):
2. Open the Python files in the models folder of the module (this one is defined in crm_lead.py - we normally name the files are the model they apply to).
3. Look for the field definition:
days_exceeding_closing = fields.Float('Exceeded Closing Days', compute='_compute_days_exceeding_closing', store=True)
In this case there is a compute method which defines the value, so you can review that code in the same file.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
Purpose of Closed in CRM
Solved
|
|
1
Jul 24
|
271 | |
|
1
Oct 24
|
99 | ||
|
0
Jun 24
|
247 | ||
|
2
Feb 23
|
1114 | ||
|
1
Sep 21
|
2278 |