From 7b4460fdf4c8f513a8dbf841538359c1c22ef734 Mon Sep 17 00:00:00 2001 From: Ilyas Semmaoui Date: Wed, 23 Jun 2021 11:11:09 +0200 Subject: [PATCH] [orange] adding closed contracts in subscriptions Previously a condition was preventing closed contracts to appear in the subscriptions but closed contracts are still relevant and also contain bills --- modules/orange/pages/bills.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/orange/pages/bills.py b/modules/orange/pages/bills.py index f4a2e6b291..06f9a681d0 100644 --- a/modules/orange/pages/bills.py +++ b/modules/orange/pages/bills.py @@ -202,9 +202,6 @@ class iter_subscription(DictElement): class item(ItemElement): klass = Subscription - def condition(self): - return Dict('contractStatus')(self) != 'CLOS' - obj_id = Dict('contractId') obj_label = Dict('offerName') obj__is_pro = False -- GitLab