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
0155014b
Commit
0155014b
authored
Sep 03, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listando asistencias
parent
8e6f0395
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
115 additions
and
1 deletions
+115
-1
general.js
src/main/webapp/js/general.js
+1
-0
control_asistencia_administrativa.js
...main/webapp/js/pages/control_asistencia_administrativa.js
+114
-1
No files found.
src/main/webapp/js/general.js
View file @
0155014b
...
...
@@ -29,6 +29,7 @@ const URI_POLICIA_CONCEPTOSEDES = "conceptoSedes";
const
URI_POLICIA_REPORTE_MONTOS
=
"reporteMontosPolicias"
;
const
URI_POLICIA_PROYECCION
=
"proyeccion"
;
const
URI_POLICIA_PROYECTADO_COMPARATIVO
=
"proyectadoComparativo"
;
const
URI_ADMINISTRATIVO_ASISTENCIA
=
"asistenciaAdministrativa"
;
//</editor-fold>
...
...
src/main/webapp/js/pages/control_asistencia_administrativa.js
View file @
0155014b
function
getColumns
()
{
let
columns
=
[
{
title
:
`N°`
,
data
:
`id`
,
className
:
'text-center'
},
{
title
:
`APELLIDOS Y NOMBRES`
,
data
:
null
,
className
:
`text-center`
,
render
:
(
data
)
=>
{
let
nombresCompletos
;
let
apellidoPaterno
=
data
.
apellido_paterno
;
let
apellidoMaterno
=
data
.
apellido_materno
;
let
nombres
=
data
.
nombres
;
nombresCompletos
=
`
${
apellidoPaterno
}
${
apellidoMaterno
}
${
nombres
}
`
;
return
nombresCompletos
;
}
},
{
title
:
`CARGO`
,
data
:
`cargo`
,
className
:
'text-center'
},
{
title
:
`HORARIO`
,
data
:
`horario`
,
className
:
'text-center'
},
{
title
:
`FECHA`
,
data
:
`fecha`
,
className
:
'text-center'
},
{
title
:
`HORA MARCACIÓN`
,
data
:
`hora_marcacion`
,
className
:
'text-center'
},
{
title
:
'ESTADO'
,
data
:
`estado_asistencia`
,
className
:
"text-center"
,
render
:
(
data
)
=>
{
let
label
=
""
;
let
contenido
=
""
;
if
(
data
===
1
)
{
label
=
`label label-success`
;
contenido
=
"ACTIVO"
;
}
else
if
(
data
===
0
)
{
label
=
`label label-danger`
;
contenido
=
"INACTIVO"
;
}
$
().
ready
(
function
()
{
return
`<span class="
${
label
}
">
${
contenido
}
</span>`
;
}
},
{
title
:
`ACCIONES`
,
data
:
null
,
className
:
'text-center'
,
render
:
(
data
)
=>
{
let
editar
=
""
;
let
eliminar
=
""
;
if
(
data
.
estado
===
1
)
{
editar
=
`<span data-placement="left" title="Editar" style="cursor: pointer"> <i class="editar icon-pencil text-slate-800"></i> </span>`
;
eliminar
=
`<span data-placement="left" title="Eliminar" style="cursor: pointer"> <i class="eliminar fa fa-power-off text-danger-700"></i> </span>`
;
}
else
{
eliminar
=
`<span data-placement="left" title="Eliminar" style="cursor: pointer"> <i class="eliminar fa fa-power-off text-success-700"></i> </span>`
;
}
let
acciones
=
editar
+
eliminar
;
return
acciones
;
}
}
];
return
columns
;
}
function
listarAsistencia
(
objParams
=
{})
{
ajaxWebService
.
get
(
URI_ADMINISTRATIVO_ASISTENCIA
,
objParams
).
then
((
response
)
=>
{
let
columns
=
getColumns
();
let
wrapsNameDatatable
=
`divDatatable`
;
let
classNameForDatatable
=
`display table table-bordered`
;
makeDatatable
(
wrapsNameDatatable
,
{
data
:
response
.
data
,
columns
,
},
classNameForDatatable
,
).
then
((
nodes
)
=>
{
// nodes.container.off();
// nodes.container.on("click", ".editar", function () {
// let data = nodes.datatable.DataTable().row($(this).parents("tr")).data();
// mostrarModalEdicion(data);
// });
//
// nodes.container.on("click", ".eliminar", function () {
// let data = nodes.datatable.DataTable().row($(this).parents("tr")).data();
// mostrarModalEliminacion(data);
// });
});
});
}
$
().
ready
(
function
()
{
listarAsistencia
();
});
\ No newline at end of file
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