mirror of
https://github.com/pretix/pretix.git
synced 2026-08-17 11:56:27 +00:00
Event product list: Hotfix for pathological performance in large event series (#6318)
* Event product list: Hotfix for pathological performance * Stop outputting bullsht numbers to widget
This commit is contained in:
@@ -193,7 +193,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
|
||||
"suggested_price": {"gross": "23.00", "net": "19.33", "tax": "3.67", "name": "", "rate": "19.00", "includes_mixed_tax_rate": False},
|
||||
"picture": None,
|
||||
"picture_fullsize": None,
|
||||
"has_variations": 0,
|
||||
"has_variations": False,
|
||||
"allow_waitinglist": True,
|
||||
"mandatory_priced_addons": False,
|
||||
"description": None,
|
||||
@@ -214,7 +214,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
|
||||
"suggested_price": None,
|
||||
"picture": None,
|
||||
"picture_fullsize": None,
|
||||
"has_variations": 4,
|
||||
"has_variations": True,
|
||||
"allow_waitinglist": True,
|
||||
"mandatory_priced_addons": False,
|
||||
"description": None,
|
||||
@@ -284,7 +284,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
|
||||
"includes_mixed_tax_rate": False},
|
||||
"picture": None,
|
||||
"picture_fullsize": None,
|
||||
"has_variations": 0,
|
||||
"has_variations": False,
|
||||
"allow_waitinglist": True,
|
||||
"mandatory_priced_addons": False,
|
||||
"description": None,
|
||||
@@ -331,7 +331,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
|
||||
"suggested_price": None,
|
||||
"picture": None,
|
||||
"picture_fullsize": None,
|
||||
"has_variations": 4,
|
||||
"has_variations": True,
|
||||
"allow_waitinglist": True,
|
||||
"mandatory_priced_addons": False,
|
||||
"description": None,
|
||||
@@ -399,7 +399,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
|
||||
"suggested_price": {"gross": "23.00", "net": "19.33", "tax": "3.67", "name": "", "rate": "19.00", "includes_mixed_tax_rate": False},
|
||||
"picture": None,
|
||||
"picture_fullsize": None,
|
||||
"has_variations": 0,
|
||||
"has_variations": False,
|
||||
"allow_waitinglist": True,
|
||||
"mandatory_priced_addons": False,
|
||||
"description": None,
|
||||
@@ -457,7 +457,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
|
||||
'picture': None,
|
||||
"picture_fullsize": None,
|
||||
'description': None,
|
||||
'has_variations': 2,
|
||||
'has_variations': True,
|
||||
"allow_waitinglist": True,
|
||||
"mandatory_priced_addons": False,
|
||||
'current_unavailability_reason': None,
|
||||
|
||||
Reference in New Issue
Block a user