forked from CGM_Public/pretix_original
Fix price-column in item export for free variations
This commit is contained in:
committed by
GitHub
parent
59a5c11ef6
commit
ad53c48d0f
@@ -149,7 +149,7 @@ class ItemDataExporter(ListExporter):
|
|||||||
row += [
|
row += [
|
||||||
_("Yes") if i.active and v.active else "",
|
_("Yes") if i.active and v.active else "",
|
||||||
", ".join([str(sn.label) for sn in sales_channels]),
|
", ".join([str(sn.label) for sn in sales_channels]),
|
||||||
v.default_price or i.default_price,
|
v.default_price if v.default_price is not None else i.default_price,
|
||||||
_("Yes") if i.free_price else "",
|
_("Yes") if i.free_price else "",
|
||||||
str(i.tax_rule) if i.tax_rule else "",
|
str(i.tax_rule) if i.tax_rule else "",
|
||||||
_("Yes") if i.admission else "",
|
_("Yes") if i.admission else "",
|
||||||
|
|||||||
Reference in New Issue
Block a user