|
|
|
@ -23,6 +23,7 @@ class Status(models.TextChoices): |
|
|
|
LOST = 'LOST', 'Lost customer' |
|
|
|
LOST = 'LOST', 'Lost customer' |
|
|
|
DECLINED = 'DECLINED', 'Declined' |
|
|
|
DECLINED = 'DECLINED', 'Declined' |
|
|
|
DECLINED_UNRELATED = 'DECLINED_UNRELATED', 'Declined without significance' |
|
|
|
DECLINED_UNRELATED = 'DECLINED_UNRELATED', 'Declined without significance' |
|
|
|
|
|
|
|
SHOULD_BUY = 'SHOULD_BUY', 'Should buy' |
|
|
|
|
|
|
|
|
|
|
|
class DeclinationReason(models.TextChoices): |
|
|
|
class DeclinationReason(models.TextChoices): |
|
|
|
TOO_EXPENSIVE = 'TOO_EXPENSIVE', 'Too expensive' |
|
|
|
TOO_EXPENSIVE = 'TOO_EXPENSIVE', 'Too expensive' |
|
|
|
|