Commit 3c9a0ed1 by Billy Larru

[EDIT registro_justificacion.js, registrando archivos seleccionados]

parent a9b6c8f8
......@@ -49,14 +49,18 @@ const registrarJustificacion = () => {
let observacion = $("#txtObservacion").val()
let numero_documentos_adjuntos = $("#txtNumeroDocumentosAdjuntos").val()
let documentos_adjuntados = ""
let documentos = [];
documentos.push({url: "https://picsum.photos/300/300/?random"})
documentos.push({url: "https://picsum.photos/300/300/?random"})
let estado = 1
let documentosSeleccionados = $("#cfDocumentos")[0].files;
let documentos = []
// documentosSeleccionados.forEach((file) => {
// })
for (let i = 0, length = documentosSeleccionados.length; i < length; i++) {
documentos.push({url: "https://picsum.photos/300/300/?random"})
}
let estado = 0
let params = {
trabajador_id,
......@@ -71,14 +75,19 @@ const registrarJustificacion = () => {
motivo,
observacion,
numero_documentos_adjuntos,
documentos,
estado
}
ajaxWebService.post(URI_JUSTIFICACION, params)
.then((response) => {
if (response.status) {
console.log(response.message)
console.log(response.data)
swal({
type: 'success',
title: '¡Justificación registrada!',
showConfirmButton: false,
timer: 1500
});
}
})
}
......
......@@ -62,7 +62,7 @@
</div>
<div class="form-group col-md-10">
<label class="control-label">Adjuntar documentos</label>
<input type="file" class="file-styled-primary form-control" multiple>
<input type="file" class="file-styled-primary form-control" id="cfDocumentos" multiple>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment