From 695205fbafb5fa0c4d181c370ec8e0a5e940995d Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 17 Dec 2014 22:02:15 +0100 Subject: [PATCH] Update regexp Remove useless SEPA in labels --- modules/creditcooperatif/perso/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/creditcooperatif/perso/pages.py b/modules/creditcooperatif/perso/pages.py index 845a25f8..b0e03106 100644 --- a/modules/creditcooperatif/perso/pages.py +++ b/modules/creditcooperatif/perso/pages.py @@ -84,6 +84,8 @@ class Transaction(FrenchTransaction): FrenchTransaction.TYPE_TRANSFER), (re.compile('^VIR(EMENT|EMT| SEPA EMET :)? (?P.*?)(- .*)?$'), FrenchTransaction.TYPE_TRANSFER), + (re.compile('^(PRLV|PRELEVEMENT) SEPA (?P.*?)(- .*)?$'), + FrenchTransaction.TYPE_ORDER), (re.compile('^(PRLV|PRELEVEMENT) (?P.*?)(- .*)?$'), FrenchTransaction.TYPE_ORDER), (re.compile('^CHEQUE.*'), FrenchTransaction.TYPE_CHECK),