mm en min

This commit is contained in:
xXpuma99Xx
2022-01-28 10:44:02 -06:00
parent f32ce95a55
commit f0cd2fa0b2
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -97,13 +97,13 @@ const reporte = async (body) => {
idPrestamo: res[i].idPrestamo,
activo: res[i].activo,
horaMaxRecoger: moment(res[i].horaMaxRecoger).format(
'YYYY-MM-DD HH:MM'
'YYYY-MM-DD HH:mm'
),
horaInicio: moment(res[i].horaInicio).format('YYYY-MM-DD HH:MM'),
horaFin: moment(res[i].horaFin).format('YYYY-MM-DD HH:MM'),
horaEntrega: moment(res[i].horaEntrega).format('YYYY-MM-DD HH:MM'),
horaInicio: moment(res[i].horaInicio).format('YYYY-MM-DD HH:mm'),
horaFin: moment(res[i].horaFin).format('YYYY-MM-DD HH:mm'),
horaEntrega: moment(res[i].horaEntrega).format('YYYY-MM-DD HH:mm'),
canceladoUsuario: res[i].canceladoUsuario,
createdAt: moment(res[i].createdAt).format('YYYY-MM-DD HH:MM'),
createdAt: moment(res[i].createdAt).format('YYYY-MM-DD HH:mm'),
numeroInventario: res[i].Equipo.numeroInventario,
numeroSerie: res[i].Equipo.numeroSerie,
sobrenombre: res[i].Equipo.sobrenombre,
+1 -1
View File
@@ -50,7 +50,7 @@ Equipo.belongsTo(Status, {
name: 'idStatus',
type: DataTypes.INTEGER,
allowNull: false,
defaultValue: 3,
defaultValue: 4,
},
});