forked from CGM_Public/pretix_original
Overview report: Fix usage of internal names
This commit is contained in:
@@ -410,7 +410,7 @@ class OverviewReport(Report):
|
|||||||
for tup in items_by_category:
|
for tup in items_by_category:
|
||||||
if tup[0]:
|
if tup[0]:
|
||||||
tdata.append([
|
tdata.append([
|
||||||
Paragraph(str(tup[0].name), tstyle_bold)
|
Paragraph(str(tup[0]), tstyle_bold)
|
||||||
])
|
])
|
||||||
for l, s in states:
|
for l, s in states:
|
||||||
tdata[-1].append(str(tup[0].num[l][0]))
|
tdata[-1].append(str(tup[0].num[l][0]))
|
||||||
|
|||||||
Reference in New Issue
Block a user