| 37121 |
vikas |
1 |
package com.spice.profitmandi.dao.enumuration.dtr;
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Structured outcome tag captured on every C2C call/interaction (SOP §12.2).
|
|
|
5 |
* Seven-value standard set. Each disposition drives a stage transition + contextual sub-fields
|
|
|
6 |
* (handled in the disposition endpoint / modal):
|
|
|
7 |
*
|
|
|
8 |
* INTERESTED → QUALIFIED (needs business value)
|
|
|
9 |
* CALLBACK → schedule callback date/time
|
|
|
10 |
* NOT_REACHABLE → auto-retry; DROPPED after N unreachable attempts
|
|
|
11 |
* WRONG_NUMBER → flag + close (or correct the number)
|
|
|
12 |
* FOLLOW_UP → call / meeting (field visit)
|
|
|
13 |
* NOT_INTERESTED→ sub-reason (Price / Terms / Already partnered / Category mismatch / Other) + comment
|
|
|
14 |
* DO_NOT_CALL → permanent block; retailer added to the DND list (DND management is a later phase)
|
|
|
15 |
*/
|
|
|
16 |
public enum LeadDisposition {
|
|
|
17 |
INTERESTED,
|
|
|
18 |
CALLBACK,
|
|
|
19 |
NOT_REACHABLE,
|
|
|
20 |
WRONG_NUMBER,
|
|
|
21 |
FOLLOW_UP,
|
|
|
22 |
NOT_INTERESTED,
|
|
|
23 |
DO_NOT_CALL;
|
|
|
24 |
}
|