fix totalsDescription group row output

This commit is contained in:
hplattner 2014-01-28 16:28:25 +01:00
parent 25bcc53a5f
commit ff3c94d40e

View file

@ -144,7 +144,7 @@ class ResultSet(object):
v = gf.totalsDescription.getDisplayValue(row) v = gf.totalsDescription.getDisplayValue(row)
if v is None: if v is None:
v = u'' v = u''
subTotalsRow.data[gf.totalsDescription.output] = u'SUMME: ' + v subTotalsRow.data[gf.totalsDescription.output] = v
return subTotalsRow return subTotalsRow
def getResult(self): def getResult(self):