File tree 3 files changed +5
-11
lines changed
3 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 39
39
async function startServer ( ) {
40
40
try {
41
41
await conn . authenticate ( ) ;
42
- console . log ( 'Conexión establecida correctamente con la base de datos .' ) ;
42
+ console . log ( 'Connection successfully established with the database.. .' ) ;
43
43
44
44
// Sincronizar el modelo con la base de datos (si es necesario)
45
45
await conn . sync ( { alter : SYNC_FORCE } ) ;
46
46
47
- console . log ( 'Realizando tareas de mantenimiento .' ) ;
47
+ console . log ( 'Performing maintenance tasks.. .' ) ;
48
48
// Ejecutar la tarea de actualización al iniciar el servidor
49
49
updateAges ( )
50
50
51
51
// Ejecutar la tarea de actualización cada día a las 00:00
52
52
cron . schedule ( '0 0 * * *' , async ( ) => {
53
- console . log ( 'Realizando tareas programadas .' ) ;
53
+ console . log ( 'Performing scheduled tasks.. .' ) ;
54
54
//contorl de age
55
55
updateAges ( )
56
56
62
62
console . log ( `Server listening at ${ PORT } ` ) ;
63
63
} ) ;
64
64
} catch ( error ) {
65
- console . error ( 'Error al iniciar el servidor: ' , error ) ;
65
+ console . error ( 'Error starting server! ' , error ) ;
66
66
}
67
67
}
68
68
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ const getPeopleService = async (params) => {
65
65
if ( fullName ) {
66
66
filters . push ( Sequelize . literal ( `UPPER("fullName") LIKE '${ fullName . toUpperCase ( ) } %'` ) )
67
67
}
68
- console . log ( filters )
69
68
70
69
const filterServices = [ ] //usada para buscar el minimo valor de los servicios filtrados
71
70
// peopleoptions
Original file line number Diff line number Diff line change @@ -53,12 +53,7 @@ const getProviderStatsService = async (idPeople) => {
53
53
] ,
54
54
where : whereProvider
55
55
} ) ;
56
- query . forEach ( value => {
57
- mostSearchedCategories . push ( {
58
- servicio : value . dataValues . Servicio ,
59
- cantidad : value . dataValues . Cantidad
60
- } )
61
- } )
56
+
62
57
let indicadoresPersonales = {
63
58
ratingPromedio : query [ 0 ] . dataValues . Promedio ,
64
59
cantidadEvaluaciones : query [ 0 ] . dataValues . Cantidad
You can’t perform that action at this time.
0 commit comments