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
acdfb247
Commit
acdfb247
authored
6 years ago
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT general.js cambiando url de periodo de cierre de asistencia]
parent
dc98c23d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
13 deletions
+3
-13
general.js
src/main/webapp/js/general.js
+1
-1
montos_administrativos.js
src/main/webapp/js/pages/montos_administrativos.js
+2
-1
tolerancia_masiva.js
src/main/webapp/js/pages/tolerancia_masiva.js
+0
-11
No files found.
src/main/webapp/js/general.js
View file @
acdfb247
...
...
@@ -43,7 +43,7 @@ const URI_DOCENTES_PROGRAMACION_SEMINARIO = "programacionSeminario";
const
URI_DOCENTES_TIPO_SEMINARIO
=
"tipoSeminario"
;
const
URI_DOCENTES_GRUPO_ACADEMICO
=
"grupoAcademico"
;
const
URI_DOCENTES_ASISTENCIAS
=
"asistenciaDocentes"
;
const
URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA
=
"periodoCierreAsistencia
Administrativa
"
;
const
URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA
=
"periodoCierreAsistencia"
;
const
URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL
=
"descuentoMensualAdministrativos"
;
const
URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL_DETALLADO
=
"descuentoAsistenciaAdministrativaDetallado"
;
//</editor-fold>
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/js/pages/montos_administrativos.js
View file @
acdfb247
...
...
@@ -56,8 +56,9 @@ function getColumns() {
const
listarPeriodosCierreAsistencia
=
(
nodeIdentifier
)
=>
{
ajaxWebService
.
get
(
URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA
).
then
((
result
)
=>
{
let
data
=
result
.
data
;
data
=
_
.
filter
(
data
,
{
tipopersonal_descripcion
:
"ADMINISTRATIVOS"
})
let
html
=
`<option value="">[SELECCIONE]</option>`
;
html
+=
data
.
map
(
periodo
=>
`<option value="
${
periodo
.
id
}
">
${
periodo
.
descripcion
}
</option>`
);
html
+=
data
.
map
(
periodo
=>
`<option value="
${
periodo
.
id
}
">
${
periodo
.
mescierre_
descripcion
}
</option>`
);
$
(
nodeIdentifier
).
html
(
html
);
$
(
nodeIdentifier
).
change
((
e
)
=>
{
let
id
=
$
(
e
.
currentTarget
).
val
();
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/js/pages/tolerancia_masiva.js
View file @
acdfb247
...
...
@@ -139,17 +139,6 @@ const mostrarModalAsignarTolerancia = () => {
});
};
function
listarSedes
(
selectorName
)
{
ajaxWebService
.
get
(
URI_SEDES
).
then
((
result
)
=>
{
let
sedes
=
result
.
data
;
sedes
=
_
.
orderBy
(
sedes
,
s
=>
s
.
descripcion
);
let
html
=
`<option value="">[SELECCIONE]</option>`
;
sedes
.
forEach
(
sede
=>
html
+=
`<option value="
${
sede
.
codigo
}
">
${
sede
.
descripcion
}
</option>`
);
$
(
`
${
selectorName
}
`
).
html
(
html
);
$
(
`
${
selectorName
}
`
).
select2
();
});
}
$
(()
=>
{
initDualListbox
(
"#lista"
);
listarPersonal
(
"#cboPersonalFiltro"
);
...
...
This diff is collapsed.
Click to expand it.
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