add getExportValue method for report fields
This commit is contained in:
parent
aab06b0cc9
commit
0208aa5595
1 changed files with 3 additions and 0 deletions
|
@ -110,6 +110,9 @@ class Field(Component):
|
||||||
def getRawValue(self, row):
|
def getRawValue(self, row):
|
||||||
return row.getRawValue(self.name)
|
return row.getRawValue(self.name)
|
||||||
|
|
||||||
|
def getExportValue(self, row):
|
||||||
|
return self.getRawValue(row)
|
||||||
|
|
||||||
def getSelectValue(self, row):
|
def getSelectValue(self, row):
|
||||||
return self.getValue(row)
|
return self.getValue(row)
|
||||||
#return self.getRawValue(row)
|
#return self.getRawValue(row)
|
||||||
|
|
Loading…
Add table
Reference in a new issue