Update regexp

Remove useless SEPA in labels
This commit is contained in:
Florent 2014-12-17 22:02:15 +01:00
commit 695205fbaf

View file

@ -84,6 +84,8 @@ class Transaction(FrenchTransaction):
FrenchTransaction.TYPE_TRANSFER),
(re.compile('^VIR(EMENT|EMT| SEPA EMET :)? (?P<text>.*?)(- .*)?$'),
FrenchTransaction.TYPE_TRANSFER),
(re.compile('^(PRLV|PRELEVEMENT) SEPA (?P<text>.*?)(- .*)?$'),
FrenchTransaction.TYPE_ORDER),
(re.compile('^(PRLV|PRELEVEMENT) (?P<text>.*?)(- .*)?$'),
FrenchTransaction.TYPE_ORDER),
(re.compile('^CHEQUE.*'), FrenchTransaction.TYPE_CHECK),