Update app.py
Browse files
app.py
CHANGED
|
@@ -1580,6 +1580,10 @@ def add_data_ver_cur2():
|
|
| 1580 |
if phone_verification_response is not None:
|
| 1581 |
user_data['ws_st'] = phone_verification_response
|
| 1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1583 |
try:
|
| 1584 |
add_or_update_contact(user_data)
|
| 1585 |
if curator_on_off == "1":
|
|
|
|
| 1580 |
if phone_verification_response is not None:
|
| 1581 |
user_data['ws_st'] = phone_verification_response
|
| 1582 |
|
| 1583 |
+
# Добавляем order и status в shop_st
|
| 1584 |
+
shop_st_data = {'order': order, 'status': status}
|
| 1585 |
+
user_data['shop_st'] = json.dumps(shop_st_data, ensure_ascii=False)
|
| 1586 |
+
|
| 1587 |
try:
|
| 1588 |
add_or_update_contact(user_data)
|
| 1589 |
if curator_on_off == "1":
|