fix DateField (missing return)
This commit is contained in:
parent
ebacd14134
commit
ebcbab1a6c
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class DateField(Field):
|
||||||
def getValue(self, row):
|
def getValue(self, row):
|
||||||
if getattr(row.parent.context.view, 'reportMode', None) == 'export':
|
if getattr(row.parent.context.view, 'reportMode', None) == 'export':
|
||||||
return self.getDisplayValue(row)
|
return self.getDisplayValue(row)
|
||||||
super(DateField, self).getValue(row)
|
return super(DateField, self).getValue(row)
|
||||||
|
|
||||||
def getDisplayValue(self, row):
|
def getDisplayValue(self, row):
|
||||||
value = self.getRawValue(row)
|
value = self.getRawValue(row)
|
||||||
|
|
Loading…
Add table
Reference in a new issue