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
dfd67559
Commit
dfd67559
authored
Sep 24, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT evaluacion justificacion, seleccionar fechas de asistencias]
parent
0d39c60c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
139 additions
and
29 deletions
+139
-29
general.js
src/main/webapp/js/general.js
+1
-0
control_asistencia_docentes.js
src/main/webapp/js/pages/control_asistencia_docentes.js
+0
-11
evaluar_justificacion.js
src/main/webapp/js/pages/evaluar_justificacion.js
+124
-4
listado_justificacion.js
src/main/webapp/js/pages/listado_justificacion.js
+0
-11
evaluarJustificacion.jsp
...pp/vistas/modals/justificaciones/evaluarJustificacion.jsp
+14
-3
No files found.
src/main/webapp/js/general.js
View file @
dfd67559
...
...
@@ -55,6 +55,7 @@ const URI_ESTADOJUSTIFICACION = "estadoJustificaciones"
const
URI_TIPOPERSONAL
=
"tipoPersonales"
const
URI_MESESCIERRE
=
"mesesCierre"
const
URI_PERIODOCIERRE
=
"periodoCierreAsistencia"
const
URI_JUSTIFICACION_ASISTENCIAS
=
"asistenciaJustificacion"
//</editor-fold>
const
swalWithBootstrapButtons
=
swal
.
mixin
({
...
...
src/main/webapp/js/pages/control_asistencia_docentes.js
View file @
dfd67559
...
...
@@ -197,17 +197,6 @@ const listarPersonal = (selectorName) => {
initSelect2
(
selectorName
,
baseURLRest
+
URI_TRABAJADORES
,
{
title
:
"nombresapellidos"
,
subtitle
:
"documentoidentidad"
});
};
const
listarSedes
=
(
selectorName
)
=>
{
ajaxWebService
.
get
(
URI_SEDES
).
then
((
result
)
=>
{
let
sedes
=
result
.
data
;
sedes
=
_
.
orderBy
(
sedes
,
s
=>
s
.
descripcion
);
let
html
=
`<option value="">[TODOS]</option>`
;
sedes
.
forEach
(
sede
=>
html
+=
`<option value="
${
sede
.
codigo
}
">
${
sede
.
descripcion
}
</option>`
);
$
(
`
${
selectorName
}
`
).
html
(
html
);
$
(
selectorName
).
select2
();
});
};
const
listarEstadoAsistencia
=
(
nodeIdentifier
)
=>
{
ajaxWebService
.
get
(
URI_ESTADO_ASISTENCIA
).
then
((
response
)
=>
{
...
...
src/main/webapp/js/pages/evaluar_justificacion.js
View file @
dfd67559
let
justificacion
;
const
seleccionarCheckBoxTodo
=
(
tr
)
=>
{
if
(
tr
.
prop
(
'checked'
))
{
$
(
'.chkAsistencia'
).
prop
(
'checked'
,
true
).
uniform
()
}
else
{
$
(
'.chkAsistencia'
).
prop
(
'checked'
,
false
).
uniform
()
}
}
const
seleccionarCheckBox
=
()
=>
{
if
(
$
(
'.chkAsistencia:checked'
).
length
===
$
(
'.chkAsistencia'
).
length
)
{
$
(
'#chkTodo'
).
prop
(
'checked'
,
true
).
uniform
()
}
else
{
$
(
'#chkTodo'
).
prop
(
'checked'
,
false
).
uniform
()
}
}
function
getColumns
()
{
let
columns
=
[
{
title
:
`<input type="checkbox" id="chkTodo">`
,
data
:
null
,
className
:
'text-center'
,
render
:
(
data
)
=>
{
return
`<input type="checkbox" class="chkAsistencia">`
}
},
{
title
:
`FECHA<br>ASISTENCIA`
,
data
:
"fecha_asistencia"
,
className
:
`text-center`
},
{
title
:
"HORA"
,
data
:
"hora_asistencia"
,
className
:
"text-center"
},
{
title
:
`DESCUENTO`
,
data
:
`descuento`
,
className
:
'text-center'
,
render
:
(
data
)
=>
{
let
texto
=
""
if
(
data
.
includes
(
"min"
))
{
texto
=
data
}
else
{
texto
=
`S/
${
parseFloat
(
data
).
toFixed
(
2
)}
`
}
return
`<span class="text-danger">
${
texto
}
</span>`
}
},
{
title
:
`OBSERVACIÓN`
,
data
:
`observacion`
,
className
:
'text-center'
},
{
title
:
`SEDE<br>MARCACIÓN`
,
data
:
`sede_marcacion`
,
className
:
'text-center'
},
{
title
:
`TIPO<br>REGISTRO`
,
data
:
`huella`
,
className
:
'text-center'
,
render
:
(
data
)
=>
{
let
label
=
""
,
contenido
=
""
if
(
data
===
1
)
{
label
=
"label label-success"
contenido
=
"HUELLA"
}
else
if
(
data
===
0
)
{
label
=
"label bg-teal"
contenido
=
"MANUAL"
}
return
`<span class="
${
label
}
">
${
contenido
}
</span>`
}
},
{
title
:
"TIPO TRABAJADOR"
,
data
:
"tipo_trabajador"
,
className
:
"text-center"
}
];
return
columns
;
}
const
listarAsistencias
=
(
objParams
=
{})
=>
{
ajaxWebService
.
get
(
URI_JUSTIFICACION_ASISTENCIAS
,
objParams
).
then
((
response
)
=>
{
let
columns
=
getColumns
();
let
wrapsNameDatatable
=
`divDatatable`
;
let
classNameForDatatable
=
`display table table-bordered`
;
makeDatatable
(
wrapsNameDatatable
,
{
data
:
response
.
data
,
columns
,
},
classNameForDatatable
,
).
then
((
nodes
)
=>
{
$
(
"#chkTodo, .chkAsistencia"
).
uniform
()
nodes
.
container
.
off
()
.
on
(
"click"
,
".verdetalle"
,
function
()
{
// let data = nodes.datatable.DataTable().row($(this).parents("tr")).data();
// mostrarModalVerDetalleJustificacion(data);
})
.
on
(
"click"
,
"#chkTodo"
,
(
e
)
=>
seleccionarCheckBoxTodo
(
$
(
e
.
currentTarget
)))
.
on
(
"click"
,
".chkAsistencia"
,
(
e
)
=>
seleccionarCheckBox
());
});
});
};
const
cargarDatos
=
()
=>
{
justificacion
=
JSON
.
parse
(
localStorage
.
getItem
(
'data'
));
...
...
@@ -17,7 +138,7 @@ const cargarDatos = () => {
$
(
"#txtObservacion"
).
text
(
`
${
justificacion
.
observacion
}
`
)
$
(
"#spanNumeroDocumentosAdjuntos"
).
text
(
`
${
justificacion
.
numero_documentos_adjuntos
}
`
)
let
documentos
=
justificacion
.
documentos
;
debugger
// let urlDocumento = documentos[0].url
// $("#imgDocumento").attr('height', '200px')
// $("#imgDocumento").attr('width', '200px')
...
...
@@ -40,7 +161,6 @@ const cargarDatos = () => {
.
join
(
""
)
$
(
"#divDocumentos"
).
html
(
html
)
}
const
justificar
=
(
estadoJustificacion
=
1
)
=>
{
let
titulo
=
""
;
...
...
@@ -92,7 +212,6 @@ const justificar = (estadoJustificacion = 1) => {
}
const
aceptarJustificacion
=
()
=>
{
justificar
()
}
...
...
@@ -100,9 +219,9 @@ const rechazarJustificacion = () => {
justificar
(
2
)
}
$
(
document
).
ready
(
function
()
{
cargarDatos
()
$
(
"#btnAceptar"
).
click
(
aceptarJustificacion
)
$
(
"#btnRechazar"
).
click
(
rechazarJustificacion
)
listarAsistencias
()
})
\ No newline at end of file
src/main/webapp/js/pages/listado_justificacion.js
View file @
dfd67559
...
...
@@ -71,7 +71,6 @@ function getColumns() {
return
columns
;
}
const
mostrarModalVerDetalleJustificacion
=
(
data
)
=>
{
// let filtros = {
// fecha_inicio: $("#dpFechaInicioFiltro").val(),
...
...
@@ -83,9 +82,6 @@ const mostrarModalVerDetalleJustificacion = (data) => {
// localStorage.setItem('filtros', JSON.stringify(filtros))
location
.
href
=
`
${
baseURLModals
}
justificaciones/evaluarJustificacion.jsp`
}
const
listarJustificaciones
=
(
objParams
=
{})
=>
{
ajaxWebService
.
get
(
URI_JUSTIFICACION
,
objParams
).
then
((
response
)
=>
{
let
columns
=
getColumns
();
...
...
@@ -111,12 +107,9 @@ const listarJustificaciones = (objParams = {}) => {
});
});
};
const
listarPersonal
=
(
selectorName
)
=>
{
initSelect2
(
selectorName
,
baseURLRest
+
URI_TRABAJADORES
,
{
title
:
"nombresapellidos"
,
subtitle
:
"documentoidentidad"
});
};
const
listarEstadoJustificaciones
=
(
nodeIdentifier
)
=>
{
ajaxWebService
.
get
(
URI_ESTADOJUSTIFICACION
).
then
((
response
)
=>
{
let
estadoJusticaciones
=
response
.
data
;
...
...
@@ -128,7 +121,6 @@ const listarEstadoJustificaciones = (nodeIdentifier) => {
$
(
nodeIdentifier
).
selectpicker
(
'refresh'
)
});
}
const
formControls
=
{
init
()
{
this
.
initPersonal
()
...
...
@@ -151,7 +143,6 @@ const formControls = {
listarEstadoJustificaciones
(
"#cboEstadoJustificacionFiltro"
)
}
}
//
const
aplicarFiltro
=
()
=>
{
let
personal
=
$
(
"#cboPersonalFiltro"
).
select2
(
'data'
)[
0
];
let
{
id
:
trabajador_id
}
=
personal
?
personal
:
{
id
:
""
}
...
...
@@ -170,8 +161,6 @@ const aplicarFiltro = () => {
})
listarJustificaciones
({
params
})
}
$
(
document
).
ready
(
function
()
{
formControls
.
init
()
$
(
"#btnMostrarTodo"
).
click
(
listarJustificaciones
)
...
...
src/main/webapp/vistas/modals/justificaciones/evaluarJustificacion.jsp
View file @
dfd67559
...
...
@@ -70,7 +70,7 @@
<div
class=
"col-md-12 form-group"
>
<label>
Documentos
</label>
<div
class=
"row"
id=
"divDocumentos"
>
</div>
<img
src=
""
alt=
""
id=
"imgDocumento"
class=
""
>
</div>
...
...
@@ -78,10 +78,21 @@
</div>
</div>
</div>
<div
class=
"col-md-12"
>
<div
class=
"panel panel-primary card-3"
style=
"margin-top: 30px"
>
<div
class=
"panel-heading"
style=
"padding: 8px 15px"
>
<h6
class=
"panel-title"
style=
"font-size: 15px; font-family: inherit"
>
ASIGNACIÓN DE ASISTENCIAS
</h6>
</div>
<div
id=
"divDatatable"
></div>
<div
class=
"panel-footer"
>
<div
class=
"text-center"
>
<button
class=
"btn btn-success"
id=
"btnAceptar"
><i
class=
"fa fa-check"
></i>
A
cept
ar
</button>
<button
class=
"btn btn-danger"
id=
"btnRechazar"
><i
class=
"fa fa-c
ross
"
></i>
Rechazar
</button>
<button
class=
"btn btn-success"
id=
"btnAceptar"
><i
class=
"fa fa-check"
></i>
A
prob
ar
</button>
<button
class=
"btn btn-danger"
id=
"btnRechazar"
><i
class=
"fa fa-c
lose
"
></i>
Rechazar
</button>
</div>
</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