Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -279,9 +279,11 @@ def shop_order_Write():
|
|
279 |
if api_sys_control != api_key_sys:
|
280 |
logging.warning("Unauthorized access attempt")
|
281 |
return json.dumps({"error": "Unauthorized access"}), 403
|
|
|
282 |
|
283 |
name = request.args.get('name', '')
|
284 |
email = request.args.get('email', '')
|
|
|
285 |
phone = request.args.get('phone', '').lstrip('+')
|
286 |
order = request.args.get('order', '')
|
287 |
status = request.args.get('status', '')
|
|
|
279 |
if api_sys_control != api_key_sys:
|
280 |
logging.warning("Unauthorized access attempt")
|
281 |
return json.dumps({"error": "Unauthorized access"}), 403
|
282 |
+
|
283 |
|
284 |
name = request.args.get('name', '')
|
285 |
email = request.args.get('email', '')
|
286 |
+
vkid = request.args.get('vk_id', '')
|
287 |
phone = request.args.get('phone', '').lstrip('+')
|
288 |
order = request.args.get('order', '')
|
289 |
status = request.args.get('status', '')
|