From a198639c59dbe83dab4d61100ebb2d68a8627cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Dor=C3=A9e?= Date: Wed, 20 Feb 2019 11:40:14 +0100 Subject: [PATCH] [bnporc] Retrieve also pending recipients --- modules/bnporc/pp/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bnporc/pp/pages.py b/modules/bnporc/pp/pages.py index 5cefb7ea70..9b0b6dc965 100644 --- a/modules/bnporc/pp/pages.py +++ b/modules/bnporc/pp/pages.py @@ -389,7 +389,7 @@ class iter_recipients(DictElement): class item(MyRecipient): # For the moment, only yield ready to transfer on recipients. - condition = lambda self: Dict('libelleStatut')(self.el) in [u'Activé', u'Temporisé'] + condition = lambda self: Dict('libelleStatut')(self.el) in [u'Activé', u'Temporisé', u'En attente'] obj_id = Dict('idBeneficiaire') obj_label = Dict('nomBeneficiaire') -- GitLab