Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
Asistencia
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Billy Larru
Asistencia
Commits
3c9a0ed1
Commit
3c9a0ed1
authored
Sep 19, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT registro_justificacion.js, registrando archivos seleccionados]
parent
a9b6c8f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
11 deletions
+20
-11
registroJustificacion.js
src/main/webapp/js/pages/registroJustificacion.js
+19
-10
registroJustificacion.jsp
src/main/webapp/vistas/registroJustificacion.jsp
+1
-1
No files found.
src/main/webapp/js/pages/registroJustificacion.js
View file @
3c9a0ed1
...
...
@@ -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
});
}
})
}
...
...
src/main/webapp/vistas/registroJustificacion.jsp
View file @
3c9a0ed1
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment