добавление файла data/orders.txt

This commit is contained in:
Danil 2026-04-09 15:55:34 +03:00
parent 807d0cbcb3
commit ebffaf9ceb

28
data/orders.txt Normal file
View File

@ -0,0 +1,28 @@
[
{
"id": 1,
"customer": "Alice",
"items": [
{"name": "Laptop", "price": 1000, "quantity": 1},
{"name": "Mouse", "price": 50, "quantity": 2}
],
"total_price": 0
},
{
"id": 2,
"customer": "Bob",
"items": [
{"name": "Keyboard", "price": 80, "quantity": 1},
{"name": "Mouse", "price": 50, "quantity": 1}
],
"total_price": 0
},
{
"id": 3,
"customer": "Alice",
"items": [
{"name": "Monitor", "price": 300, "quantity": 2}
],
"total_price": 0
}
]