version producción

This commit is contained in:
Lemuel Marquez
2021-07-26 18:36:47 -05:00
parent b03dcaf555
commit 8f067c4cb1
4 changed files with 4 additions and 4 deletions
@@ -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);