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
8971d075
Commit
8971d075
authored
Aug 21, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listando asistencia de policias
parent
b893705d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
367 additions
and
252 deletions
+367
-252
general.js
src/main/webapp/js/general.js
+1
-0
control_asistencia_policias.js
src/main/webapp/js/pages/control_asistencia_policias.js
+162
-48
controlAsistenciaPolicias.jsp
src/main/webapp/vistas/controlAsistenciaPolicias.jsp
+204
-204
No files found.
src/main/webapp/js/general.js
View file @
8971d075
...
@@ -17,6 +17,7 @@ const URI_SEDES = "http://172.16.2.91:666/sedes";
...
@@ -17,6 +17,7 @@ const URI_SEDES = "http://172.16.2.91:666/sedes";
const
URI_ESTADO_ASISTENCIA
=
"http://172.16.2.91:666/estadoAsistencia"
;
const
URI_ESTADO_ASISTENCIA
=
"http://172.16.2.91:666/estadoAsistencia"
;
const
URI_POLICIAS
=
"http://172.16.2.91:666/policias"
;
const
URI_POLICIAS
=
"http://172.16.2.91:666/policias"
;
const
URI_ROL_POLICIA
=
"http://172.16.2.91:666/rolesPolicias"
;
const
URI_ROL_POLICIA
=
"http://172.16.2.91:666/rolesPolicias"
;
const
URI_POLICIAS_ASISTENCIA
=
"http://sistem16:666/asistenciaPolicias"
;
//</editor-fold>
//</editor-fold>
...
...
src/main/webapp/js/pages/control_asistencia_policias.js
View file @
8971d075
...
@@ -5,49 +5,168 @@ function init() {
...
@@ -5,49 +5,168 @@ function init() {
listarEstadoAsistencia
();
listarEstadoAsistencia
();
}
}
//function listarSedes() {
function
listarAsistencias
(
objParams
=
{})
{
//
// if (Object.is(htmlSedes, undefined)) {
axios
.
get
(
URI_POLICIAS_ASISTENCIA
,
objParams
).
then
((
response
)
=>
{
// axios.get(URI_LISTAR_SEDES).then((result) => {
response
.
data
=
formatResponse
(
response
);
// debugger
debugger
// let sedes = result.data;
let
columns
=
[
// htmlSedes = `<label>Sede</label>
{
// <select class="selectpicker form-control" name="busqueda" id="busqueda" multiple>`;
title
:
`N°`
,
// sedes.forEach((s) => {
data
:
`id`
// htmlSedes += `<option value="${s.codigo}">${s.descripcion}</option>`;
},
// });
{
// htmlSedes += `</select>`;
title
:
`APELLIDOS Y NOMBRES`
,
// debugger
data
:
`policia_nombres`
// $('#divCriterio').html(htmlSedes);
},
// $('.selectpicker').selectpicker({
{
// style: 'btn-info',
title
:
`SEDE`
,
// size: 4
data
:
`sede_descripcion`
// });
},
//
{
// $(".btn.dropdown-toggle.bs-placeholder").removeClass("btn-info");
title
:
`HORARIO`
,
// $(".btn.dropdown-toggle.bs-placeholder").css({
data
:
`horario`
// border: "1px solid #ddd",
},
// backgroundColor: "#fff"
{
// });
title
:
`TIPO`
,
//
data
:
`tiporol_descripcion`
// }).catch((error) => {
},
// console.log(error);
{
// });
title
:
`FRECUENCIA`
,
// } else {
data
:
`frecuencia_descripcion`
// $('#divCriterio').html(htmlSedes);
},
// $('.selectpicker').selectpicker({
{
// style: 'btn-info',
title
:
`FECHA ENTRADA`
,
// size: 4
data
:
`fecha_entrada`
// });
},
// $(".btn.dropdown-toggle.bs-placeholder").removeClass("btn-info");
{
// $(".btn.dropdown-toggle.bs-placeholder").css({
title
:
`MARC. ENTRADA`
,
// border: "1px solid #ddd",
data
:
null
,
// backgroundColor: "#fff"
render
:
data
=>
{
// });
let
clase
=
""
;
// }
//
//}
if
(
data
.
marcacion_entrada
===
null
)
{
return
null
;
}
if
(
data
.
huella_entrada
===
1
)
{
clase
=
"text-migration font-weight-bold"
;
}
else
if
(
data
.
huella_entrada
===
0
)
{
clase
=
"text-default"
;
}
return
`<span class="
${
clase
}
">
${
data
.
marcacion_entrada
}
</span>`
;
}
},
{
title
:
`MARC. SALIDA`
,
data
:
`marcacion_salida`
},
{
title
:
`FECHA SALIDA`
,
data
:
`fecha_salida`
},
{
title
:
`ESTADO`
,
data
:
null
,
render
:
(
data
)
=>
{
// if (data.marcacion_entrada == null && data.marcacion_salida == null) {
// return `<span class="label bg-purple">PENDIENTE</span>`;
// }
// else if (data.marcacion_entrada == null) {
// return `<span class="label bg-purple">ENTRADA PENDIENTE</span>`;
// } else if (data.marcacion_salida == null) {
// return `<span class="label bg-purple">SALIDA PENDIENTE</span>`;
// }
let
label
=
""
;
let
estado
=
""
;
switch
(
data
.
estado
)
{
case
1
:
label
=
"label label-success"
;
estado
=
"TEMPRANO"
;
break
;
case
2
:
label
=
"label label-warning"
;
estado
=
"TARDANZA"
;
break
;
case
3
:
label
=
"label label-danger"
;
estado
=
"FCA"
;
break
;
case
4
:
label
=
"label label-danger"
;
estado
=
"FSA"
;
break
;
case
5
:
label
=
"label label-default"
;
estado
=
"NO MARCÓ"
;
break
;
case
9
:
label
=
"label label-info"
;
estado
=
"LSGH"
;
break
;
case
10
:
label
=
"label bg-purple"
;
estado
=
"ENTRADA PENDIENTE"
;
break
;
case
11
:
label
=
"label bg-purple"
;
estado
=
"SALIDA PENDIENTE"
;
break
;
case
null
:
label
=
"label bg-purple"
;
estado
=
"PENDIENTE"
;
break
;
}
return
`<span class="
${
label
}
">
${
estado
}
</span>`
;
}
},
{
title
:
`ACCIONES`
,
data
:
null
,
render
:
(
data
)
=>
{
return
null
;
}
}
];
let
columnDefs
=
[
{
orderable
:
false
,
width
:
'5%'
,
targets
:
0
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'5%'
,
targets
:
1
},
{
orderable
:
false
,
width
:
'30%'
,
targets
:
2
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'7%'
,
targets
:
3
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'7%'
,
targets
:
4
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'10%'
,
targets
:
5
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
6
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
7
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
8
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
9
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
10
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
11
,
className
:
"text-center"
},
{
orderable
:
false
,
width
:
'8%'
,
targets
:
12
,
className
:
"text-center"
}
];
let
wrapsNameDatatable
=
`divAsistencias`
;
let
classNameForDatatable
=
`display table table-bordered`
;
let
footer
=
false
;
makeDatatable
({
data
:
response
.
data
.
data
,
columns
:
columns
,
columnDefs
:
columnDefs
,
wrapsNameDatatable
:
wrapsNameDatatable
,
classNameForDatatable
:
classNameForDatatable
,
footer
:
footer
}).
then
((
response
)
=>
{
});
});
}
function
listarSedes
(
selectorName
)
{
function
listarSedes
(
selectorName
)
{
axios
.
get
(
URI_SEDES
).
then
((
result
)
=>
{
axios
.
get
(
URI_SEDES
).
then
((
result
)
=>
{
...
@@ -287,11 +406,6 @@ function evtChange() {
...
@@ -287,11 +406,6 @@ function evtChange() {
}
}
$
().
ready
(
function
()
{
$
().
ready
(
function
()
{
listarPolicias
(
"#cboPoliciasFiltro"
);
listarPolicias
(
"#cboPoliciasFiltro"
);
listarSedes
(
"#cboSedesFiltro"
);
listarSedes
(
"#cboSedesFiltro"
);
...
@@ -341,7 +455,7 @@ $().ready(function () {
...
@@ -341,7 +455,7 @@ $().ready(function () {
defaultConfigDatePicker
();
defaultConfigDatePicker
();
seleccionCriterio
();
seleccionCriterio
();
$
(
"#btnVerTodos"
).
click
(
listarAsistencias
);
});
});
src/main/webapp/vistas/controlAsistenciaPolicias.jsp
View file @
8971d075
...
@@ -82,210 +82,210 @@
...
@@ -82,210 +82,210 @@
<div
class=
"panel-heading"
style=
"padding: 8px 15px"
>
<div
class=
"panel-heading"
style=
"padding: 8px 15px"
>
<h6
class=
"panel-title"
style=
"font-size: 15px; font-family: inherit"
><i
class=
"icon icon-search4"
></i>
LISTADO DE ASISTENCIAS
</h6>
<h6
class=
"panel-title"
style=
"font-size: 15px; font-family: inherit"
><i
class=
"icon icon-search4"
></i>
LISTADO DE ASISTENCIAS
</h6>
</div>
</div>
<div>
<div
id=
"divAsistencias"
>
<table
class=
"table dataTable table-striped table-hover table-sm table-bordered display"
id=
"tblAsistenciaPolicias"
>
<
!-- <
table class="table dataTable table-striped table-hover table-sm table-bordered display" id="tblAsistenciaPolicias">
<thead>
<thead>
<tr>
<tr>
<th
class=
"text-center"
>
Nº
</th>
<th class="text-center">Nº</th>
<th>
APELLIDOS Y NOMBRES
</th>
<th>APELLIDOS Y NOMBRES</th>
<th
class=
"text-center"
>
SEDE
</th>
<th class="text-center">SEDE</th>
<th
class=
"text-center"
>
FECHA
</th>
<th class="text-center">FECHA</th>
<th
class=
"text-center"
>
HORARIO
</th>
<th class="text-center">HORARIO</th>
<th
class=
"text-center"
>
TIPO
</th>
<th class="text-center">TIPO</th>
<th
class=
"text-center"
>
FRECUENCIA
</th>
<th class="text-center">FRECUENCIA</th>
<th
class=
"text-center"
>
MARC. ENTRADA
</th>
<th class="text-center">MARC. ENTRADA</th>
<th
class=
"text-center"
>
MARC. SALIDA
</th>
<th class="text-center">MARC. SALIDA</th>
<th
class=
"text-center"
>
ESTADO
</th>
<th class="text-center">ESTADO</th>
<th
class=
"text-center"
>
ACCIONES
</th>
<th class="text-center">ACCIONES</th>
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr>
<td
class=
"text-center"
>
1
</td>
<td class="text-center">1</td>
<td>
RAMIREZ MORALES ROLANDO
</td>
<td>RAMIREZ MORALES ROLANDO</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 17:00
</td>
<td class="text-center">07:00 - 17:00</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
IMPAR
</td>
<td class="text-center">IMPAR</td>
<td
class=
"text-center"
>
<td class="text-center">
<span
class=
"text-migration font-weight-bold"
>
06:32
</span>
<span class="text-migration font-weight-bold">06:32</span>
</td>
</td>
<td
class=
"text-center"
>
<td class="text-center">
<span
class=
"text-default"
>
17:23
</span>
<span class="text-default">17:23</span>
</td>
</td>
<td
class=
"text-center"
><span
class=
"label label-success"
>
TEMPRANO
</span></td>
<td class="text-center"><span class="label label-success">TEMPRANO</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
2
</td>
<td class="text-center">2</td>
<td>
RODRIGUEZ CALERO MARCO ANTONIO
</td>
<td>RODRIGUEZ CALERO MARCO ANTONIO</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
19:00 - 07:00
</td>
<td class="text-center">19:00 - 07:00</td>
<td
class=
"text-center"
>
AMANECIDA 12H
</td>
<td class="text-center">AMANECIDA 12H</td>
<td
class=
"text-center"
>
IMPAR
</td>
<td class="text-center">IMPAR</td>
<td
class=
"text-center"
>
<td class="text-center">
<span
class=
"text-migration"
>
19:07
</span>
<span class="text-migration">19:07</span>
</td>
</td>
<td
class=
"text-center text-migration"
>
07:02
</td>
<td class="text-center text-migration">07:02</td>
<td
class=
"text-center"
><span
class=
"label label-warning"
>
TARDANZA
</span></td>
<td class="text-center"><span class="label label-warning">TARDANZA</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
3
</td>
<td class="text-center">3</td>
<td>
LORENZO CARHUANCHO JOEL
</td>
<td>LORENZO CARHUANCHO JOEL</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00- 17:00
</td>
<td class="text-center">07:00- 17:00</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
DIARIO
</td>
<td class="text-center">DIARIO</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
><span
class=
"label label-danger"
title=
"Falta Con Aviso"
>
FCA
</span></td>
<td class="text-center"><span class="label label-danger" title="Falta Con Aviso">FCA</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
4
</td>
<td class="text-center">4</td>
<td>
VASQUEZ PEREZ LIDER
</td>
<td>VASQUEZ PEREZ LIDER</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00- 17:00
</td>
<td class="text-center">07:00- 17:00</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
PAR
</td>
<td class="text-center">PAR</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
><span
class=
"label label-danger"
title=
"Falta Sin Aviso"
>
FSA
</span></td>
<td class="text-center"><span class="label label-danger" title="Falta Sin Aviso">FSA</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
5
</td>
<td class="text-center">5</td>
<td>
SILVA ASTUDILLO VICTOR SEGUNDO
</td>
<td>SILVA ASTUDILLO VICTOR SEGUNDO</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 07:00
</td>
<td class="text-center">07:00 - 07:00</td>
<td
class=
"text-center"
>
AMANECIDA 24H
</td>
<td class="text-center">AMANECIDA 24H</td>
<td
class=
"text-center"
>
IMPAR
</td>
<td class="text-center">IMPAR</td>
<td
class=
"text-center"
>
07:24
</td>
<td class="text-center">07:24</td>
<td
class=
"text-center text-migration"
>
06:58
</td>
<td class="text-center text-migration">06:58</td>
<td
class=
"text-center"
><span
class=
"label label-default"
>
NO MARCÓ
</span></td>
<td class="text-center"><span class="label label-default">NO MARCÓ</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
6
</td>
<td class="text-center">6</td>
<td>
PACHECO PANCA ADOLFO
</td>
<td>PACHECO PANCA ADOLFO</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 07:00
</td>
<td class="text-center">07:00 - 07:00</td>
<td
class=
"text-center"
>
AMANECIDA 24H
</td>
<td class="text-center">AMANECIDA 24H</td>
<td
class=
"text-center"
>
PAR
</td>
<td class="text-center">PAR</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
><span
class=
"label label-info"
title=
"Vacaciones"
>
VAC
</span></td>
<td class="text-center"><span class="label label-info" title="Vacaciones">VAC</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
7
</td>
<td class="text-center">7</td>
<td>
GONZALES MARCHISIO JUAN CARLOS
</td>
<td>GONZALES MARCHISIO JUAN CARLOS</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 17:00
</td>
<td class="text-center">07:00 - 17:00</td>
<td
class=
"text-center"
>
AMANECIDA 24H
</td>
<td class="text-center">AMANECIDA 24H</td>
<td
class=
"text-center"
>
DIARIO
</td>
<td class="text-center">DIARIO</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
><span
class=
"label label-info"
title=
"Feriado"
>
FER
</span></td>
<td class="text-center"><span class="label label-info" title="Feriado">FER</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
8
</td>
<td class="text-center">8</td>
<td>
SOTO GUTIERREZ MANUEL JESUS
</td>
<td>SOTO GUTIERREZ MANUEL JESUS</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:50 - 17:00
</td>
<td class="text-center">07:50 - 17:00</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
UN SOLO DÍA
</td>
<td class="text-center">UN SOLO DÍA</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
>
-
</td>
<td class="text-center">-</td>
<td
class=
"text-center"
><span
class=
"label label-info"
title=
"Licencia con goce de haberes"
>
LCGH
</span></td>
<td class="text-center"><span class="label label-info" title="Licencia con goce de haberes">LCGH</span></td>
<td></td>
<td></td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
9
</td>
<td class="text-center">9</td>
<td>
VIDAL AVILA WILLY CESAR
</td>
<td>VIDAL AVILA WILLY CESAR</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 17:00
</td>
<td class="text-center">07:00 - 17:00</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
IMPAR
</td>
<td class="text-center">IMPAR</td>
<td
class=
"text-center"
></td>
<td class="text-center"></td>
<td
class=
"text-center"
>
17:13
</td>
<td class="text-center">17:13</td>
<td
class=
"text-center"
><span
class=
"label bg-purple"
>
ENTRADA PENDIENTE
</span></td>
<td class="text-center"><span class="label bg-purple">ENTRADA PENDIENTE</span></td>
<td
class=
"text-center"
>
<td class="text-center">
<span
data-toggle=
"modal"
data-target=
"#modal_entrada_pendiente"
data-placement=
"left"
title=
"Editar"
style=
"cursor: pointer"
>
<i
class=
'registrar icon-plus-circle2 text-success-700'
></i>
</span>
<span data-toggle="modal" data-target="#modal_entrada_pendiente" data-placement="left" title="Editar" style="cursor: pointer"> <i class='registrar icon-plus-circle2 text-success-700'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Editar"
style=
"cursor: pointer"
>
<i
class=
'editar icon-pencil text-slate-800'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='editar icon-pencil text-slate-800'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Aprobar"
style=
"cursor: pointer"
>
<i
class=
'aprobar icon-checkmark-circle text-success-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Aprobar" style="cursor: pointer"> <i class='aprobar icon-checkmark-circle text-success-700'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Anular"
style=
"cursor: pointer"
>
<i
class=
'anular icon-cancel-circle2 text-danger-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Anular" style="cursor: pointer"> <i class='anular icon-cancel-circle2 text-danger-700'></i> </span>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
10
</td>
<td class="text-center">10</td>
<td>
PAREDES HUANUQUEÑO ROBERTO SANTOS
</td>
<td>PAREDES HUANUQUEÑO ROBERTO SANTOS</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 17:00
</td>
<td class="text-center">07:00 - 17:00</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
IMPAR
</td>
<td class="text-center">IMPAR</td>
<td
class=
"text-center text-migration"
>
07:28
</td>
<td class="text-center text-migration">07:28</td>
<td></td>
<td></td>
<td
class=
"text-center"
><span
class=
"label bg-purple"
>
SALIDA PENDIENTE
</span></td>
<td class="text-center"><span class="label bg-purple">SALIDA PENDIENTE</span></td>
<td
class=
"text-center"
>
<td class="text-center">
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Editar"
style=
"cursor: pointer"
>
<i
class=
'registrar icon-plus-circle2 text-success-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='registrar icon-plus-circle2 text-success-700'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Editar"
style=
"cursor: pointer"
>
<i
class=
'editar icon-pencil text-slate-800'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='editar icon-pencil text-slate-800'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Aprobar"
style=
"cursor: pointer"
>
<i
class=
'aprobar icon-checkmark-circle text-success-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Aprobar" style="cursor: pointer"> <i class='aprobar icon-checkmark-circle text-success-700'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Anular"
style=
"cursor: pointer"
>
<i
class=
'anular icon-cancel-circle2 text-danger-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Anular" style="cursor: pointer"> <i class='anular icon-cancel-circle2 text-danger-700'></i> </span>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
11
</td>
<td class="text-center">11</td>
<td>
PICHIGUA MELENDEZ ANTONIO
</td>
<td>PICHIGUA MELENDEZ ANTONIO</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:50 - 14:30
</td>
<td class="text-center">07:50 - 14:30</td>
<td
class=
"text-center"
>
REGULAR
</td>
<td class="text-center">REGULAR</td>
<td
class=
"text-center"
>
DIARIO
</td>
<td class="text-center">DIARIO</td>
<td
class=
"text-center"
></td>
<td class="text-center"></td>
<td></td>
<td></td>
<td
class=
"text-center"
><span
class=
"label bg-purple"
>
PENDIENTE
</span></td>
<td class="text-center"><span class="label bg-purple">PENDIENTE</span></td>
<td
class=
"text-center"
>
<td class="text-center">
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Editar"
style=
"cursor: pointer"
>
<i
class=
'registrar icon-plus-circle2 text-success-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='registrar icon-plus-circle2 text-success-700'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Editar"
style=
"cursor: pointer"
>
<i
class=
'editar icon-pencil text-slate-800'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='editar icon-pencil text-slate-800'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Aprobar"
style=
"cursor: pointer"
>
<i
class=
'aprobar icon-checkmark-circle text-success-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Aprobar" style="cursor: pointer"> <i class='aprobar icon-checkmark-circle text-success-700'></i> </span>
<span
data-toggle=
"tooltip"
data-placement=
"left"
title=
"Anular"
style=
"cursor: pointer"
>
<i
class=
'anular icon-cancel-circle2 text-danger-700'
></i>
</span>
<span data-toggle="tooltip" data-placement="left" title="Anular" style="cursor: pointer"> <i class='anular icon-cancel-circle2 text-danger-700'></i> </span>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"text-center"
>
12
</td>
<td class="text-center">12</td>
<td>
ALCALDE VENTURA JORGE EMILIANO
</td>
<td>ALCALDE VENTURA JORGE EMILIANO</td>
<td
class=
"text-center"
>
VILLA EL SALVADOR
</td>
<td class="text-center">VILLA EL SALVADOR</td>
<td
class=
"text-center"
>
26/06/2018
</td>
<td class="text-center">26/06/2018</td>
<td
class=
"text-center"
>
07:00 - 07:00
</td>
<td class="text-center">07:00 - 07:00</td>
<td
class=
"text-center"
>
AMANECIDA 24H
</td>
<td class="text-center">AMANECIDA 24H</td>
<td
class=
"text-center"
>
IMPAR
</td>
<td class="text-center">IMPAR</td>
<td
class=
"text-center"
style=
"color: #999999;"
><strong>
07:24
</strong></td>
<td class="text-center" style="color: #999999;"><strong>07:24</strong></td>
<td
class=
"text-center"
style=
"color: #999999;"
><strong>
06:58
</strong></td>
<td class="text-center" style="color: #999999;"><strong>06:58</strong></td>
<td
class=
"text-center"
><span
class=
"label label-default"
>
NO MARCÓ x2
</span></td>
<td class="text-center"><span class="label label-default">NO MARCÓ x2</span></td>
<td></td>
<td></td>
</tr>
</tr>
</tbody>
</tbody>
</table
>
</table>--
>
</div>
</div>
</div>
</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