From 86a677d8d8d84a46de0bbad15104cd323ca50f45 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 1 Aug 2025 15:38:13 +0200 Subject: [PATCH] add Not concerned prospect status --- biz/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/biz/models.py b/biz/models.py index f1268ef..bd092dd 100644 --- a/biz/models.py +++ b/biz/models.py @@ -23,6 +23,7 @@ class Status(models.TextChoices): LOST = 'LOST', 'Lost customer' DECLINED = 'DECLINED', 'Declined' DECLINED_UNRELATED = 'DECLINED_UNRELATED', 'Declined without significance' + NOT_CONCERNED = 'NOT_CONCERNED', 'Not concerned' SHOULD_BUY = 'SHOULD_BUY', 'Should buy' class DeclinationReason(models.TextChoices):