|
@@ -32,7 +32,7 @@ print(JID, PASSWORD)
|
|
|
listen_to=["test@ej.sharix-app.org", "test1@ej.sharix-app.org"]
|
|
|
|
|
|
#тут хранится список jid, кому бот может отправлять сообщения в результате обработки заявки
|
|
|
-process_to=["test@ej.sharix-app.org", "test1@ej.sharix-app.org"]
|
|
|
+proceed_to=["test1@ej.sharix-app.org"]
|
|
|
|
|
|
# обработчик входящих сообщений
|
|
|
def message_handler(conn, mess):
|
|
@@ -60,6 +60,7 @@ def message_handler(conn, mess):
|
|
|
|
|
|
if text is not None:
|
|
|
orderObj = jsreq.jsonToUser(text)
|
|
|
+ print (orderObj)
|
|
|
tasklist.append(orderObj)
|
|
|
bot.bot_log(str(datetime.now())+" Поступивший заказ успешно добавлен в очередь обработки\n")
|
|
|
|
|
@@ -75,7 +76,7 @@ def open_bot_template():
|
|
|
bot.fake_api_call(tasklist[i].name)
|
|
|
|
|
|
#он тут вроде не валится, но сообщения не приходят вроде
|
|
|
- bot.proceed_status("test@ej.sharix-app.org",tasklist[i])
|
|
|
+ bot.proceed_status(proceed_to[0],tasklist[i])
|
|
|
|
|
|
del tasklist[i]
|
|
|
bot.bot_log(botname+" "+str(datetime.now())+" "+str(i)+" "+"Заказ успешно обработан и удален из очереди\n")
|