This commit is contained in:
Victor Sanchez Sosa 2024-02-08 09:26:47 -05:00
parent 9bbe3e5d2f
commit dc5fb6b55a
5 changed files with 2354 additions and 50 deletions

View File

@ -1,7 +1,7 @@
const { error } = require('actions-on-google/dist/common');
const axios= require('axios');
const URLIC = 'https://sistemasic.manta.gob.ec/';
const URLPC = 'http://mantaentusmanos.test/';
const URLPC = 'https://portalciudadano.manta.gob.ec/';
// const URLPC = 'https://portalciudadano.manta.gob.ec/';
const { WebhookClient } = require("dialogflow-fulfillment");
@ -165,6 +165,8 @@ async function ConsultaClaves(cedula, chang = null){
array['msg'] = 'la clave catastral '+cedula+' no existe en los registros del GAD MANTA';
}
}
console.log("array procedure server");
console.log(array);
resolve(array);
}).catch(function (error) {
array['msg'] = error;

View File

@ -193,7 +193,7 @@ app.post("/webhook", express.json(), function (req, res) {
let port = 4000;
let port = 3000;
app.listen(port, () => {
console.log("Estamos ejecutando el servidor en el puerto " + port);
});

View File

@ -450,7 +450,7 @@ async function Fun_ConsultaPredios(agent, req, res) {
}
}
async function Fun_RetornarAlinicio(agent, req, res, name) {
async function Fun_RetornarAlinicio(agent, req, res, name, text = "") {
agent.context.set({
name: '0-Bienvenida-followup',
lifespan: 1
@ -661,19 +661,35 @@ async function Fun_ConsultarClavesCatastrales(agent, req, res, _cedula = null, n
console.log(legion)
if (legion['ok'] == true) {
let coun = legion['data'].length;
let mensjae_predios = '';
legion['data'].forEach((element, index) => {
console.log(element['valor'])
var rec = element['valor']['boot']['anteriores'];
if (element['valor']['boot']['anteriores'] != 'Recaudación al día') {
rec = rec + '\n' + element['valor']['boot']['actual'] + '\n' + element['valor']['boot']['total']
}
if (index == (coun - 1)) {
agent.add(element['text'] + '\n' + element['direccion'] + '\n' + rec);
return Fun_RetornarAlinicio(agent, req, res, funcion.conver_name(data_context.name));
if (element['valor']['boot']['total'] != null) {
if (element['valor']['boot']['anteriores'] == 'Recaudación al día') {
rec = element['valor']['boot']['actual'] + '\n' + element['valor']['boot']['total'];
}else{
agent.add(element['text'] + '\n' + funcion.conver_capitalice(element['direccion']) + '\n' + rec);
rec += '\n' + element['valor']['boot']['actual'] + '\n' + element['valor']['boot']['total'];
}
}
if (mensjae_predios.length > 0) {
mensjae_predios += '\n\n';
}
mensjae_predios += element['text'] + '\n' + element['direccion'] + '\n' + rec;
// if (index == (coun - 1)) {
// mensjae_predios += element['text'] + '\n' + element['direccion'] + '\n' + rec;
// // agent.add(element['text'] + '\n' + element['direccion'] + '\n' + rec);
// // return Fun_RetornarAlinicio(agent, req, res, funcion.conver_name(data_context.name));
// } else {
// mensjae_predios += element['text'] + '\n' + element['direccion'] + '\n' + rec;
// // agent.add(element['text'] + '\n' + funcion.conver_capitalice(element['direccion']) + '\n' + rec);
// }
});
if (mensjae_predios.length > 0) {
agent.add(mensjae_predios);
}
return Fun_RetornarAlinicio(agent, req, res, funcion.conver_name(data_context.name));
} else {
agent.add(funcion.conver_name(data_context.name) + ', ' + legion['msg']);
return Fun_RetornarAlinicio(agent, req, res, funcion.conver_name(data_context.name));
@ -691,6 +707,8 @@ async function Fun_ConsultarClavesCatastrales(agent, req, res, _cedula = null, n
return Fun_WelcomeAgent(agent, req, res);
}
} catch (error) {
console.log("error");
console.log(error);
return ResolveDefauld(agent);
}
}

2288
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,7 @@
"dependencies": {
"actions-on-google": "^2.14.0",
"axios": "^0.21.1",
"dialogflow-fulfillment": "0.6.0",
"dialogflow-fulfillment": "^0.6.0",
"express": "^4.17.1",
"nodemon": "^2.0.7"
}