Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
node_crisp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
web
node_crisp
Commits
ed74bdda
Commit
ed74bdda
authored
Aug 12, 2021
by
Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Agrega mensaje de reinicio
parent
e3ccc53a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
handlers.js
handlers.js
+1
-0
index.js
index.js
+1
-1
No files found.
handlers.js
View file @
ed74bdda
...
...
@@ -274,6 +274,7 @@ module.exports =
let
telefonoMedico
=
siguientesTurnos
.
tel
;
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Disculpe, el doctor
${
userData
[
NOMBRE_MEDICO
]}
no tiene turnos proximos disponibles`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Le sugiero llamar al teléfono
${
telefonoMedico
}
para coordinar un turno telefónicamente`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Si desea reservar un turno con otro médico, por favor escriba: REINICIAR`
);
}
else
{
await
crisp
.
setSiguientePaso
(
website_id
,
session_id
,
pasos
.
RESP_FECHA_TURNO
,
userData
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Cuándo querrías atenderte con
${
userData
[
NOMBRE_MEDICO
]}
? (DD/MM/AAAA)`
);
...
...
index.js
View file @
ed74bdda
...
...
@@ -18,7 +18,7 @@ async function darSiguientePaso(message, website_id, session_id) {
}
crisp
.
CrispClient
.
on
(
"message:send"
,
async
function
(
message
)
{
if
(
message
.
content
===
'reiniciar
'
){
if
(
message
.
content
.
toUpperCase
()
===
'REINICIAR
'
){
await
crisp
.
updateUserData
(
message
.
website_id
,
message
.
session_id
,
{});
}
let
siguientePaso
=
await
crisp
.
getSiguientePaso
(
message
.
website_id
,
message
.
session_id
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment