Check-in: Show more information (#3576)

* Check-in: Show more information

* Add change notes

* Rebase migration

* Add "expand" option to checkinrpc

* REmove accidental file

* Docs fixes

* REbase migration

* Rebase migration

* Fix typo

* REbase migration

* Make web-checkin look more like new android checkin
This commit is contained in:
Raphael Michel
2023-11-28 14:52:12 +01:00
committed by GitHub
parent ab28086779
commit 8a3b313cb6
35 changed files with 346 additions and 41 deletions

View File

@@ -279,6 +279,7 @@ TEST_ITEM_RES = {
"hidden_if_available": None,
"hidden_if_item_available": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": False,
"require_approval": False,
"variations": [],
@@ -392,6 +393,7 @@ def test_item_detail_variations(token_client, organizer, event, team, item):
"description": None,
"position": 0,
"checkin_attention": False,
"checkin_text": None,
"require_approval": False,
"require_membership": False,
"require_membership_hidden": False,
@@ -478,6 +480,7 @@ def test_item_create(token_client, organizer, event, item, category, taxrule, me
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"has_variations": True,
"require_membership_types": [membership_type.pk],
"meta_data": {
@@ -556,6 +559,7 @@ def test_item_create_with_variation(token_client, organizer, event, item, catego
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"variations": [
{
@@ -566,6 +570,7 @@ def test_item_create_with_variation(token_client, organizer, event, item, catego
"active": True,
"require_approval": True,
"checkin_attention": False,
"checkin_text": None,
"require_membership": False,
"require_membership_hidden": False,
"require_membership_types": [],
@@ -618,6 +623,7 @@ def test_item_create_giftcard_validation(token_client, organizer, event, item, c
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"addons": []
},
@@ -650,6 +656,7 @@ def test_item_create_giftcard_validation(token_client, organizer, event, item, c
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"addons": []
},
@@ -687,6 +694,7 @@ def test_item_create_with_addon(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"addons": [
{
@@ -733,6 +741,7 @@ def test_item_create_with_addon(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"addons": [
{
@@ -777,6 +786,7 @@ def test_item_create_with_addon(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"addons": [
{
@@ -821,6 +831,7 @@ def test_item_create_with_addon(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"addons": [
{
@@ -873,6 +884,7 @@ def test_item_create_with_bundle(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"bundles": [
{
@@ -919,6 +931,7 @@ def test_item_create_with_bundle(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"bundles": [
{
@@ -960,6 +973,7 @@ def test_item_create_with_bundle(token_client, organizer, event, item, category,
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"bundles": [
{
@@ -1190,6 +1204,7 @@ def test_item_file_upload(token_client, organizer, event, item):
"min_per_order": None,
"max_per_order": None,
"checkin_attention": False,
"checkin_text": None,
"has_variations": True,
"meta_data": {
"day": "Wednesday"
@@ -1307,6 +1322,7 @@ TEST_VARIATIONS_RES = {
"default_price": None,
"price": "23.00",
"checkin_attention": False,
"checkin_text": None,
"require_approval": False,
"require_membership": False,
"require_membership_hidden": False,
@@ -1329,6 +1345,7 @@ TEST_VARIATIONS_UPDATE = {
"position": 1,
"default_price": "20.0",
"checkin_attention": False,
"checkin_text": None,
"require_approval": False,
"require_membership": False,
"require_membership_hidden": False,
@@ -2056,6 +2073,7 @@ TEST_QUESTION_RES = {
"required": False,
"items": [],
"ask_during_checkin": False,
"show_during_checkin": False,
"hidden": False,
"print_on_invoice": False,
"identifier": "ABC",