From 058a1fd1b341668ea7baef97ec05f7d124561364 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 1 Aug 2025 10:08:31 +0200 Subject: [PATCH] adds a SHOULD_BUY status --- biz/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/biz/models.py b/biz/models.py index 6bbb2af..fc213e8 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' + SHOULD_BUY = 'SHOULD_BUY', 'Should buy' class DeclinationReason(models.TextChoices): TOO_EXPENSIVE = 'TOO_EXPENSIVE', 'Too expensive'