Spaces:
Sleeping
Sleeping
Update components/place_order.py
Browse files
components/place_order.py
CHANGED
@@ -15,7 +15,7 @@ def place_order_page():
|
|
15 |
|
16 |
orders = read_excel('data/orders.xlsx')
|
17 |
order_id = str(uuid.uuid4())
|
18 |
-
total_cost = sum(item
|
19 |
|
20 |
new_order = {
|
21 |
"Order ID": order_id,
|
@@ -35,4 +35,6 @@ def place_order_page():
|
|
35 |
|
36 |
with gr.Group():
|
37 |
gr.Markdown("### Place Your Order")
|
38 |
-
gr.
|
|
|
|
|
|
15 |
|
16 |
orders = read_excel('data/orders.xlsx')
|
17 |
order_id = str(uuid.uuid4())
|
18 |
+
total_cost = sum(item.get("Price", 0) * item.get("Quantity", 1) for item in cart)
|
19 |
|
20 |
new_order = {
|
21 |
"Order ID": order_id,
|
|
|
35 |
|
36 |
with gr.Group():
|
37 |
gr.Markdown("### Place Your Order")
|
38 |
+
status_label = gr.Label(label="Order Status") # Use a Label for output
|
39 |
+
place_order_button = gr.Button("Place Order")
|
40 |
+
place_order_button.click(place_order, outputs=status_label)
|