dont't sum totals values on subtotals row
This commit is contained in:
parent
fb9de8acbd
commit
11498e14e7
2 changed files with 17 additions and 16 deletions
|
@ -177,7 +177,8 @@ class ResultSet(object):
|
|||
res.append(row)
|
||||
for idx, sc in enumerate(self.subTotalsColumns):
|
||||
for idx2, f in enumerate(sc):
|
||||
subTotals[idx][idx2] += f.getValue(row)
|
||||
subTotals[idx][idx2] += f.getValue(row,
|
||||
ignoreTotals=True)
|
||||
lastRow = row
|
||||
if lastRow is not None:
|
||||
subTotalsRows = []
|
||||
|
|
Loading…
Add table
Reference in a new issue