From 920d46e116eddfdd35b1a7324dd62b046731ac33 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sun, 30 Dec 2012 16:36:36 +0100 Subject: [PATCH] add a pattern to detect cards --- modules/lcl/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/lcl/pages.py b/modules/lcl/pages.py index 1acc8c7d..cd0b45e8 100644 --- a/modules/lcl/pages.py +++ b/modules/lcl/pages.py @@ -208,6 +208,8 @@ class Transaction(FrenchTransaction): FrenchTransaction.TYPE_CHECK), (re.compile('^(?PRELEVE CB) AU (?P
\d+)/(?P\d+)/(?P\d+)'), FrenchTransaction.TYPE_CARD), + (re.compile('^(?PCB) (?P.*) (?P
\d+)/(?P\d+)/(?P\d+)'), + FrenchTransaction.TYPE_CARD), (re.compile('^(?P(PRELEVEMENT|TELEREGLEMENT|TIP)) (?P.*)'), FrenchTransaction.TYPE_ORDER), (re.compile('^(?PECHEANCEPRET)(?P.*)'), FrenchTransaction.TYPE_LOAN_PAYMENT),