[MERGE] forward port of branch 7.0 up to 27d8cb8

This commit is contained in:
Denis Ledoux 2015-01-05 13:48:01 +01:00
commit 643bbcb00b
1 changed files with 5 additions and 0 deletions

View File

@ -407,6 +407,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'