version producción
This commit is contained in:
@@ -2,7 +2,7 @@ const moment = require('moment');
|
||||
const dbPath = '../../db/tablas';
|
||||
const CarreraHorario = require(`${dbPath}/CarreraHorario`);
|
||||
const Horario = require(`${dbPath}/Horario`);
|
||||
const hoy = moment().add(7, 'd');
|
||||
const hoy = moment();
|
||||
|
||||
const horariosDia = async (body) => {
|
||||
const data = [];
|
||||
|
||||
@@ -2,7 +2,7 @@ const moment = require('moment');
|
||||
const dbPath = '../../db/tablas';
|
||||
const GrupoHorario = require(`${dbPath}/GrupoHorario`);
|
||||
const Horario = require(`${dbPath}/Horario`);
|
||||
const hoy = moment().add(14, 'd');
|
||||
const hoy = moment();
|
||||
|
||||
const horariosDia = async (body) => {
|
||||
const data = [];
|
||||
|
||||
@@ -4,7 +4,7 @@ const { validarNumeroCuenta } = require(`${helperPath}/validar`);
|
||||
const dbPath = '../../db/tablas';
|
||||
const Horario = require(`${dbPath}/Horario`);
|
||||
const PrimerSemestre = require(`${dbPath}/PrimerSemestre`);
|
||||
const hoy = moment().add(7, 'd');
|
||||
const hoy = moment();
|
||||
|
||||
const asistencia = async (body) => {
|
||||
const numeroCuenta = validarNumeroCuenta(body.numeroCuenta);
|
||||
|
||||
@@ -5,7 +5,7 @@ const dbPath = '../../db/tablas';
|
||||
const GrupoHorario = require(`${dbPath}/GrupoHorario`);
|
||||
const Horario = require(`${dbPath}/Horario`);
|
||||
const TercerSemestre = require(`${dbPath}/TercerSemestre`);
|
||||
const hoy = moment().add(14, 'd');
|
||||
const hoy = moment();
|
||||
|
||||
const asistencia = async (body) => {
|
||||
const numeroCuenta = validarNumeroCuenta(body.numeroCuenta);
|
||||
|
||||
Reference in New Issue
Block a user