diff --git a/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py b/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py index 7f9edbf..eaadfa9 100644 --- a/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py +++ b/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py @@ -269,5 +269,7 @@ class AccountBankStatementImportPayPalParser(models.TransientModel): @api.model def _normalize_tz(self, value): if value in ['PDT', 'PST']: - return 'PST8PDT' + return 'America/Los_Angeles' + elif value in ['CET', 'CEST']: + return 'Europe/Paris' return value