From ebffaf9ceb635f5af4920fb71c80fee82157cb13 Mon Sep 17 00:00:00 2001 From: Danil Date: Thu, 9 Apr 2026 15:55:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0=20data/orde?= =?UTF-8?q?rs.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/orders.txt | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 data/orders.txt diff --git a/data/orders.txt b/data/orders.txt new file mode 100644 index 0000000..804aaa8 --- /dev/null +++ b/data/orders.txt @@ -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 + } +] \ No newline at end of file