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
0bf9b651
Commit
0bf9b651
authored
Jun 05, 2021
by
Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mostrar telefono si el medico no tiene turnos disponibles
parent
52f5481e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
is.js
endpoints/is.js
+9
-0
handlers.js
handlers.js
+12
-2
No files found.
endpoints/is.js
View file @
0bf9b651
...
...
@@ -69,6 +69,15 @@ module.exports =
console
.
log
(
error
);
});
},
getSiguientesTurnosDisponibles
:
async
function
(
idAgenda
,
idPersonaInstitucional
)
{
return
await
axios
.
get
(
`/turnos/turnos_siguientes_disponibles?id_agenda=
${
idAgenda
}
&id_persona_institucional=
${
idPersonaInstitucional
}
`
)
.
then
(
async
function
(
response
)
{
return
response
.
data
;
})
.
catch
(
function
(
error
)
{
console
.
log
(
error
);
});
},
existeUsuario
:
async
function
(
tipo_documento
,
numero_documento
,
fecha_nacimiento
,
sexo
){
return
await
axios
.
get
(
`/watson/existe_persona?tipo_documento=
${
tipo_documento
}
&numero_documento=
${
numero_documento
}
&fecha_nacimiento=
${
fecha_nacimiento
}
&sexo=
${
sexo
}
`
)
.
then
(
async
function
(
response
)
{
...
...
handlers.js
View file @
0bf9b651
...
...
@@ -20,6 +20,7 @@ let SIGUIENTE_PASO = 'siguiente_paso'
let
MEDICOS
=
'medicos'
let
MEDICOS_ESPECIALIDAD
=
'medicos_especialidad'
let
SIGUIENTES_TURNOS_DISPONIBLES
=
'siguientes_turnos_disponibles'
let
TURNOS_DISPONIBLES
=
'turnos_disponibles'
let
TURNO_ELEGIDO
=
'turno_elegido'
let
TIPO_DOCUMENTO
=
'tipo_documento'
...
...
@@ -246,8 +247,17 @@ module.exports =
}
},
ask_fecha_turno
:
async
function
(
message
,
userData
,
website_id
,
session_id
){
//Verificar que el medico tenga turnos disponibles
let
siguientesTurnos
=
await
is
.
getSiguientesTurnosDisponibles
(
userData
[
ID_AGENDA
],
userData
[
ID_PERSONA_INSTITUCIONAL
]);
userData
[
SIGUIENTES_TURNOS_DISPONIBLES
]
=
siguientesTurnos
;
if
(
siguientesTurnos
.
turnos
.
length
===
0
){
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`
);
}
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)`
);
}
},
resp_fecha_turno
:
async
function
(
message
,
userData
,
website_id
,
session_id
){
userData
[
FECHA_TURNO
]
=
message
.
content
;
...
...
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