nagasurendra commited on
Commit
f6c02f8
·
verified ·
1 Parent(s): 5f9d4fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -1068,7 +1068,7 @@ def checkout():
1068
  # Final total bill calculation
1069
  total_bill = total_price - discount
1070
 
1071
- # Store all order details
1072
  order_details = "\n".join(
1073
  f"{item['Name']} x{item['Quantity__c']} | Add-Ons: {item.get('Add_Ons__c', 'None')} | "
1074
  f"Instructions: {item.get('Instructions__c', 'None')} | "
@@ -1101,11 +1101,12 @@ def checkout():
1101
  }
1102
 
1103
  # Create the order in Salesforce
1104
- sf.Order__c.create(order_data)
1105
 
1106
- # Delete cart items after order is placed
1107
- for item in cart_items:
1108
- sf.Cart_Item__c.delete(item["Id"])
 
1109
 
1110
  return jsonify({"success": True, "message": "Order placed successfully!", "discount": discount, "totalBill": total_bill})
1111
 
 
1068
  # Final total bill calculation
1069
  total_bill = total_price - discount
1070
 
1071
+ # Store all order details (before deleting cart items)
1072
  order_details = "\n".join(
1073
  f"{item['Name']} x{item['Quantity__c']} | Add-Ons: {item.get('Add_Ons__c', 'None')} | "
1074
  f"Instructions: {item.get('Instructions__c', 'None')} | "
 
1101
  }
1102
 
1103
  # Create the order in Salesforce
1104
+ order_response = sf.Order__c.create(order_data)
1105
 
1106
+ # After order is placed, delete cart items
1107
+ if order_response:
1108
+ for item in cart_items:
1109
+ sf.Cart_Item__c.delete(item["Id"])
1110
 
1111
  return jsonify({"success": True, "message": "Order placed successfully!", "discount": discount, "totalBill": total_bill})
1112