From af465a29c70d17087fc404232249873e87537301 Mon Sep 17 00:00:00 2001 From: Guillaume Risbourg Date: Tue, 27 Aug 2019 14:25:08 +0200 Subject: [PATCH] [bp] Added Transaction.TYPE_DEPOSIT for "Versement DAB" transactions Closes: 12997@zendesk --- modules/bp/pages/accounthistory.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/bp/pages/accounthistory.py b/modules/bp/pages/accounthistory.py index e4c1f478cb..31c1571876 100644 --- a/modules/bp/pages/accounthistory.py +++ b/modules/bp/pages/accounthistory.py @@ -54,6 +54,7 @@ class Transaction(FrenchTransaction): (re.compile(r'^(?PFRAIS POUR)(?P.*)'), FrenchTransaction.TYPE_BANK), (re.compile(r'^(?P(?PREMUNERATION).*)'), FrenchTransaction.TYPE_BANK), (re.compile(r'^(?PREMISE DE CHEQUES?) (?P.*)'), FrenchTransaction.TYPE_DEPOSIT), + (re.compile(r'^(?PVERSEMENT DAB) (?P.*)'), FrenchTransaction.TYPE_DEPOSIT), (re.compile(r'^(?PDEBIT CARTE BANCAIRE DIFFERE.*)'), FrenchTransaction.TYPE_CARD_SUMMARY), (re.compile(r'^(?PCOTISATION TRIMESTRIELLE).*'), FrenchTransaction.TYPE_BANK), (re.compile(r'^REMISE COMMERCIALE.*'), FrenchTransaction.TYPE_BANK), -- GitLab