12-22-2020, 06:03 PM
In search.py module on line number 3339:
it is converting all timestamp values to UTC.
Even if i have right date in the database table.
It is only case for search.eval() or search.get_sobjects().
In the webb tables it shows right timestamp, without converting to UTC.
Code:
if isinstance(value, datetime.datetime):
if value.tzinfo:
value = SPTDate.convert_to_timezone(value, 'UTC')
Even if i have right date in the database table.
It is only case for search.eval() or search.get_sobjects().
In the webb tables it shows right timestamp, without converting to UTC.