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
e250fe4f
Commit
e250fe4f
authored
Sep 19, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT general.js, definiendo listarSedes]
parent
fbef7dec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
general.js
src/main/webapp/js/general.js
+11
-0
No files found.
src/main/webapp/js/general.js
View file @
e250fe4f
...
...
@@ -51,6 +51,7 @@ const URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL_DETALLADO = "descuentoAsistenciaAdmi
const
URI_SEDES
=
"sedes"
;
const
URI_JUSTIFICACION_TIPO
=
"tipoJustificacion"
const
URI_JUSTIFICACION
=
"justificaciones"
const
URI_ESTADOJUSTIFICACION
=
"estadoJustificaciones"
//</editor-fold>
swal
.
mixin
({
...
...
@@ -599,6 +600,16 @@ const generarFechas = (desde, hasta) => {
return
fechas
;
}
const
listarSedes
=
(
nodeIdentifier
,
todos
=
true
)
=>
{
ajaxWebService
.
get
(
URI_SEDES
).
then
((
response
)
=>
{
let
sedes
=
response
.
data
;
sedes
=
_
.
orderBy
(
sedes
,
s
=>
s
.
descripcion
);
let
html
=
`<option value="">
${
todos
?
"[TODOS]"
:
[
SELECCIONE
]}
</option>`
;
html
+=
sedes
.
map
(
sede
=>
`<option value="
${
sede
.
codigo
}
">
${
sede
.
descripcion
}
</option>`
)
$
(
nodeIdentifier
).
html
(
html
).
select2
();
});
};
/*ELIMINAR CUANDO PASE A PROD*/
$
(
"body"
).
addClass
(
"sidebar-xs"
)
...
...
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