Start moving data server handling from pinia store to server

This commit is contained in:
2024-10-03 19:03:36 +02:00
parent e177cf53e6
commit 14766fb39b
27 changed files with 401 additions and 215 deletions

View File

@@ -5,21 +5,43 @@
"accountId": 0,
"shippingProgress": 4,
"addressId": 0,
"paymentId": 0
"paymentId": 0,
"tickets": [
{
"concertId": 0,
"orderPrice": 184
}
]
},
{
"id": 1,
"accountId": 3,
"shippingProgress": 5,
"addressId": 4,
"paymentId": 3
"paymentId": 3,
"tickets": [
{
"concertId": 0,
"orderPrice": 184
},
{
"concertId": 0,
"orderPrice": 184
}
]
},
{
"id": 2,
"accountId": 3,
"shippingProgress": 2,
"addressId": 5,
"paymentId": 3
"paymentId": 3,
"tickets": [
{
"concertId": 0,
"orderPrice": 184
}
]
}
]
}