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
a3c358db
Commit
a3c358db
authored
Sep 03, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listando personal adminsitrativo
parent
0155014b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
18 deletions
+37
-18
web.xml
src/main/webapp/WEB-INF/web.xml
+1
-1
general.js
src/main/webapp/js/general.js
+11
-10
comparativo_proyeccion_policias.js
src/main/webapp/js/pages/comparativo_proyeccion_policias.js
+1
-2
control_asistencia_administrativa.js
...main/webapp/js/pages/control_asistencia_administrativa.js
+21
-4
control_asistencia_policias.js
src/main/webapp/js/pages/control_asistencia_policias.js
+1
-1
controlAsistenciaAdministrativa.jsp
src/main/webapp/vistas/controlAsistenciaAdministrativa.jsp
+2
-0
No files found.
src/main/webapp/WEB-INF/web.xml
View file @
a3c358db
...
...
@@ -55,7 +55,7 @@
</servlet-mapping>
<session-config>
<session-timeout>
-1
86400
</session-timeout>
</session-config>
</web-app>
src/main/webapp/js/general.js
View file @
a3c358db
...
...
@@ -8,8 +8,10 @@ const CODIGO_PROYECTO = '7';
const
PATH_SERVICIO_REST
=
'http://app9.sacooliveros.edu.pe:8080/security-rest/api/'
;
//<editor-fold> SERVICIOS REST
const
baseURLRest
=
'http://sistem16:666/'
;
const
ajaxWebService
=
axios
.
create
({
baseURL
:
'http://sistem16:666/'
baseURL
:
baseURLRest
});
const
ajaxModal
=
axios
.
create
({
baseURL
:
`http://localhost:7070/Asistencia/vistas/modals/`
...
...
@@ -30,6 +32,7 @@ const URI_POLICIA_REPORTE_MONTOS = "reporteMontosPolicias";
const
URI_POLICIA_PROYECCION
=
"proyeccion"
;
const
URI_POLICIA_PROYECTADO_COMPARATIVO
=
"proyectadoComparativo"
;
const
URI_ADMINISTRATIVO_ASISTENCIA
=
"asistenciaAdministrativa"
;
const
URI_TRABAJADORES
=
"trabajadores"
;
//</editor-fold>
...
...
@@ -428,13 +431,10 @@ const cleanQueryParams = (params = {}) => {
let
initDatePicker
=
(...
selectorName
)
=>
{
selectorName
.
forEach
(
id
=>
{
let
options
=
{
minDate
:
new
Date
(
2000
,
1
-
1
,
1
),
maxDate
:
new
Date
(),
dateFormat
:
'dd/mm/yy'
,
defaultDate
:
new
Date
(),
changeMonth
:
true
,
changeYear
:
true
,
yearRange
:
'-18:+0'
,
format
:
"dd/mm/yyyy"
,
zIndexOffset
:
3000
,
autoclose
:
true
,
language
:
"es"
,
onSelect
:
function
()
{
// $(this).valid();
}
...
...
@@ -445,7 +445,8 @@ let initDatePicker = (...selectorName) => {
}
const
initSelect2
=
(
nodeIdentifier
,
URI
,
{
id
,
title
,
subtitle
}
=
{})
=>
{
const
initSelect2
=
(
nodeIdentifier
,
URI
,
{
title
,
subtitle
}
=
{})
=>
{
console
.
log
(
2
)
$
(
`
${
nodeIdentifier
}
`
).
select2
({
containerCssClass
:
'select-xs'
,
ajax
:
{
...
...
@@ -458,7 +459,7 @@ const initSelect2 = (nodeIdentifier, URI, {id, title, subtitle} = {}) => {
page
:
params
.
page
};
},
processResults
:
function
(
data
,
params
)
{
processResults
:
function
(
data
,
params
)
{
// parse the results into the format expected by Select2
// since we are using custom formatting functions we do not need to
// alter the remote JSON data, except to indicate that infinite
...
...
@@ -502,7 +503,7 @@ const initSelect2 = (nodeIdentifier, URI, {id, title, subtitle} = {}) => {
}
function
formatRepoSelection
(
repo
)
{
if
(
repo
[
id
]
)
{
if
(
repo
.
id
)
{
return
repo
[
title
];
}
else
{
return
repo
.
text
;
...
...
src/main/webapp/js/pages/comparativo_proyeccion_policias.js
View file @
a3c358db
...
...
@@ -118,8 +118,7 @@ function listarPolicias(selectorName) {
initSelect2
(
selectorName
,
"http://sistem16:666/policias"
,
{
title
:
"nombres"
,
subtitle
:
"dni"
});
}
function
verReporte
()
{
debugger
function
verReporte
()
{
// let policia_nombres = $("#cboPolicias option:selected").text();
let
fecha_inicio
=
$
(
"#dpFechaInicio"
).
val
();
...
...
src/main/webapp/js/pages/control_asistencia_administrativa.js
View file @
a3c358db
...
...
@@ -15,7 +15,7 @@ function getColumns() {
let
apellidoMaterno
=
data
.
apellido_materno
;
let
nombres
=
data
.
nombres
;
nombresCompletos
=
`
${
apellidoPaterno
}
${
apellidoMaterno
}
${
nombres
}
`
;
return
nombresCompletos
;
}
},
...
...
@@ -112,6 +112,24 @@ function listarAsistencia(objParams = {}) {
});
}
$
().
ready
(
function
()
{
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
listarPersonal
=
(
selectorName
)
=>
{
initSelect2
(
selectorName
,
baseURLRest
+
URI_TRABAJADORES
,
{
title
:
"nombresapellidos"
,
subtitle
:
"documentoidentidad"
});
}
$
(()
=>
{
listarAsistencia
();
});
\ No newline at end of file
initDatePicker
(
"#dpFechaInicio"
,
"#dpFechaFin"
);
listarSedes
(
"#cboSedesFiltro"
);
listarPersonal
(
"#cboPersonalFiltro"
);
});
src/main/webapp/js/pages/control_asistencia_policias.js
View file @
a3c358db
...
...
@@ -269,7 +269,7 @@ function listarSedes(selectorName) {
let
html
=
`<option value="">[TODOS]</option>`
;
sedes
.
forEach
(
sede
=>
html
+=
`<option value="
${
sede
.
codigo
}
">
${
sede
.
descripcion
}
</option>`
);
$
(
`
${
selectorName
}
`
).
html
(
html
);
$
(
'.select-search'
).
select2
();
$
(
`
${
selectorName
}
`
).
select2
();
});
}
...
...
src/main/webapp/vistas/controlAsistenciaAdministrativa.jsp
View file @
a3c358db
...
...
@@ -76,8 +76,10 @@
<script
src=
"../plantilla/assets/js/plugins/ui/moment/moment.min.js"
type=
"text/javascript"
></script>
<script
src=
"../plantilla/assets/js/plugins/pickers/datepicker.js"
type=
"text/javascript"
></script>
<script
src=
"../js/lib/bootstrap-select.min.js"
type=
"text/javascript"
></script>
<script
src=
"../plantilla/assets/js/plugins/forms/selects/select2.min.js"
></script>
<script
src=
"../js/lib/lodash.js"
type=
"text/javascript"
></script>
<script
src=
"../js/lib/sweetalert2.min.js"
type=
"text/javascript"
></script>
<script
src=
"../js/pages/control_asistencia_administrativa.js"
type=
"text/javascript"
></script>
<!--js-->
...
...
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