Commit 8b9b775a by Полина Бел

перенесены правки из боевого

1 parent 33969a24
Showing with 43 additions and 4 deletions
...@@ -142,6 +142,38 @@ node helpful_pos ...@@ -142,6 +142,38 @@ node helpful_pos
positive: goto send_it on #messageHasSentiment("positive") || #messageHasIntent("send_it"); positive: goto send_it on #messageHasSentiment("positive") || #messageHasIntent("send_it");
negative: goto dont_need on #messageHasSentiment("negative"); negative: goto dont_need on #messageHasSentiment("negative");
allready_have: goto allready_have on #messageHasIntent("allready_have"); allready_have: goto allready_have on #messageHasIntent("allready_have");
allready_been: goto allready_been on #messageHasIntent("allready_have");
}
}
node allready_been
{
do
{
$cjm.push("allready_been");
#say("allready_been");
var result = blockcall SkipMessagesBlock();
wait*;
}
transitions
{
positive: goto cant_talk_rn on #messageHasSentiment("positive");
negative: goto denial on #messageHasSentiment("negative");
}
}
node denial
{
do
{
$cjm.push("denial");
#say("thanks_for_time_2");
goto end_conversation;
}
transitions
{
end_conversation: goto end_conversation;
} }
} }
...@@ -333,7 +365,7 @@ node not_present // Давайте проведем бесплатный Зум, ...@@ -333,7 +365,7 @@ node not_present // Давайте проведем бесплатный Зум,
do do
{ {
digression enable { conference_time, zoom_cost }; digression enable { conference_time, zoom_cost };
set $cjm = external performed_stage($cjm, "not_present"); $cjm.push("not_present");
#say("free_zoom"); #say("free_zoom");
var result = blockcall SkipMessagesBlock(); var result = blockcall SkipMessagesBlock();
wait*; wait*;
...@@ -509,4 +541,4 @@ digression record ...@@ -509,4 +541,4 @@ digression record
{ {
} }
} }
\ No newline at end of file
...@@ -433,7 +433,12 @@ ...@@ -433,7 +433,12 @@
], ],
"allready_have":[ "allready_have":[
{ {
"text": "К сожалению, записей вебинаров мы принципиально не делаем. Мы предоставляем нашим клиентам только записи Академии." "text": "Отлично, у нас есть закрытая академия для наших новых пользователей. Я сейчас передам контакты вашему персональному менеджеру"
}
],
"allready_been":[
{
"text": "У нас каждая академия имеет чтото новое, даются актуальные знания и новые инструменты, продукт постоянно совершенствуются. Давайте с вами свяжется ваш персональный менеджер"
} }
] ]
}, },
...@@ -462,7 +467,8 @@ ...@@ -462,7 +467,8 @@
"conference_time":{}, "conference_time":{},
"zoom_cost":{}, "zoom_cost":{},
"record":{}, "record":{},
"allready_have":{} "allready_have":{},
"allready_been":{}
} }
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!