From a1b44320b676680fc34cda7dfa410df1b5c6fc68 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 10 Sep 2024 19:28:08 +0300 Subject: [PATCH] feat: complete deal --- services/deal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/deal.py b/services/deal.py index 29a97bb..904fc56 100644 --- a/services/deal.py +++ b/services/deal.py @@ -207,7 +207,7 @@ class DealService(BaseService): if not full: q = q.where( Deal.is_completed == False, - Deal.current_status != DealStatus.COMPLETED + # Deal.current_status != DealStatus.COMPLETED ) else: q = q.order_by(Deal.created_at.desc())