nagasurendra commited on
Commit
4b8f2a3
·
verified ·
1 Parent(s): decf4fb

Update components/place_order.py

Browse files
Files changed (1) hide show
  1. components/place_order.py +4 -2
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["Price"] * item["Quantity"] for item in cart)
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.Button("Place Order").click(place_order, outputs="Status")
 
 
 
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)