[MERGE] forward port of branch saas-3 up to 643bbcb

This commit is contained in:
Denis Ledoux 2015-01-05 14:25:34 +01:00
commit 00762bbae0
1 changed files with 5 additions and 0 deletions

View File

@ -521,6 +521,11 @@ class datetime(_column):
exc_info=True)
return utc_timestamp
@classmethod
def _as_display_name(cls, field, cr, uid, obj, value, context=None):
value = datetime.context_timestamp(cr, uid, DT.datetime.strptime(value, tools.DEFAULT_SERVER_DATETIME_FORMAT), context=context)
return tools.ustr(value.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT))
class binary(_column):
_type = 'binary'
_symbol_c = '%s'