From eb40afd1bb21457746ef5a8562e25827181235e3 Mon Sep 17 00:00:00 2001 From: wildi Date: Wed, 4 Mar 2020 22:36:11 +0100 Subject: [PATCH] [IMP] Add German Date Format for Paypal --- .../models/account_bank_statement_import_paypal_map.py | 1 + 1 file changed, 1 insertion(+) diff --git a/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_map.py b/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_map.py index cd848db6..6727c6c8 100644 --- a/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_map.py +++ b/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_map.py @@ -103,6 +103,7 @@ class AccountBankStatementImportPaypalMapLIne(models.Model): selection=[ ('%d/%m/%Y', 'i.e. 15/12/2019'), ('%m/%d/%Y', 'i.e. 12/15/2019'), + ('%d.%m.%Y', 'i.e. 15.12.2019') ], string="Date Format", )