diff --git a/modules/hsbc/pages/account_pages.py b/modules/hsbc/pages/account_pages.py index b17c8ffc75aefa076007c8dd1f6d69793c5b8a38..bb12986ca07d1d335b24a58aeeb24cb8716ff715 100644 --- a/modules/hsbc/pages/account_pages.py +++ b/modules/hsbc/pages/account_pages.py @@ -46,7 +46,8 @@ class Transaction(FrenchTransaction): (re.compile(r'^DAB (?P
\d{2})/(?P\d{2}) ((?P\d{2})H(?P\d{2}) )?(?P.*?)( CB N°.*)?$'), FrenchTransaction.TYPE_WITHDRAWAL), (re.compile(r'^(IMPAYE REMISE )?CHEQUE( \d+)?'), FrenchTransaction.TYPE_CHECK), (re.compile(r'^IMPAYE REMISE CHEQUE'), FrenchTransaction.TYPE_CHECK), - (re.compile(r'^(COTIS\.?|FRAIS) (?P.*)'), FrenchTransaction.TYPE_BANK), + (re.compile(r'^(COM\.?|COTIS\.?|FRAIS) (?P.*)'), FrenchTransaction.TYPE_BANK), + (re.compile(r'^ARRETE DE COMPTE.*'), FrenchTransaction.TYPE_BANK), (re.compile(r'^REMISE (?P.*)'), FrenchTransaction.TYPE_DEPOSIT), (re.compile(r'^FACTURES CB (?P.*)'), FrenchTransaction.TYPE_CARD_SUMMARY), ]