mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[FIX] account_bank_statement_import_paypal: adjust tz mapping
This commit is contained in:
committed by
Carlos Roca
parent
b847d3827d
commit
9b1f75c055
@@ -269,5 +269,7 @@ class AccountBankStatementImportPayPalParser(models.TransientModel):
|
|||||||
@api.model
|
@api.model
|
||||||
def _normalize_tz(self, value):
|
def _normalize_tz(self, value):
|
||||||
if value in ['PDT', 'PST']:
|
if value in ['PDT', 'PST']:
|
||||||
return 'PST8PDT'
|
return 'America/Los_Angeles'
|
||||||
|
elif value in ['CET', 'CEST']:
|
||||||
|
return 'Europe/Paris'
|
||||||
return value
|
return value
|
||||||
|
|||||||
Reference in New Issue
Block a user