use getDisplayValue in subTotalsRow
This commit is contained in:
parent
2d3dbf2be7
commit
de06a8d30d
1 changed files with 2 additions and 2 deletions
|
@ -128,10 +128,10 @@ class ResultSet(object):
|
|||
subTotalsRow.data[c.name] = values[idx]
|
||||
if gf in self.subTotalsGroupColumns:
|
||||
if gf.totalsDescription is None:
|
||||
subTotalsRow.data[gf.output] = u'SUMME: ' + gf.getRawValue(row)
|
||||
subTotalsRow.data[gf.output] = u'SUMME: ' + gf.getDisplayValue(row)
|
||||
else:
|
||||
subTotalsRow.data[gf.totalsDescription.output] = u'SUMME: ' + \
|
||||
gf.totalsDescription.getRawValue(row)
|
||||
gf.totalsDescription.getDisplayValue(row)
|
||||
return subTotalsRow
|
||||
|
||||
def getResult(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue