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
865d1229
Commit
865d1229
authored
Aug 25, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
agregando instancias de axios
parent
301644a2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
46 additions
and
55 deletions
+46
-55
general.js
src/main/webapp/js/general.js
+25
-36
crearRolPolicia.js
src/main/webapp/js/pages/crearRolPolicia.js
+8
-8
index.js
src/main/webapp/js/pages/index.js
+4
-4
navbar.js
src/main/webapp/js/pages/navbar.js
+1
-1
index.jsp
src/main/webapp/vistas/index.jsp
+0
-1
header.jsp
src/main/webapp/vistas/templates/header.jsp
+8
-5
No files found.
src/main/webapp/js/general.js
View file @
865d1229
...
...
@@ -3,24 +3,30 @@ const PATH_GENERAL = 'http://localhost:7070/Asistencia/';
const
PATH_IP
=
'http://172.16.2.102:7070/Asistencia/'
;
//PRODUCCION
const
PATH_DOMAIN
=
''
;
const
CODIGO_PROYECTO
_ASISTENCIA
=
'7'
;
const
CODIGO_PROYECTO
=
'7'
;
//const PATH_SERVICIO_REST = 'http://172.16.2.53:8080/security-rest/api/'//'http://app8.sacooliveros.edu.pe:8080/security-rest/api/';
const
PATH_SERVICIO_REST
=
'http://app9.sacooliveros.edu.pe:8080/security-rest/api/'
;
//<editor-fold> SERVICIOS REST
const
ajaxWebService
=
axios
.
create
({
baseURL
:
'http://sistem16:666/'
});
const
ajaxModal
=
axios
.
create
({
baseURL
:
`http://localhost:7070/Asistencia/vistas/modals/`
});
//<editor-fold> SERVICIOS REST
//<editor-fold> MODULO DE POLICIAS
const
URI_TIPOROL_POLICIA
=
"
http://172.16.2.91:666/
tipoRolPolicias"
;
const
URI_FRECUENCIA_ROL_POLICIA
=
"
http://172.16.2.91:666/
frecuenciaRolPolicias"
;
const
URI_SEDES
=
"
http://172.16.2.91:666/
sedes"
;
const
URI_ESTADO_ASISTENCIA
=
"
http://172.16.2.91:666/
estadoAsistencia"
;
const
URI_POLICIAS
=
"
http://172.16.2.91:666/
policias"
;
const
URI_ROL_POLICIA
=
"
http://172.16.2.91:666/
rolesPolicias"
;
const
URI_POLICIAS_ASISTENCIA
=
"
http://sistem16:666/
asistenciaPolicias"
;
const
URI_POLICIA_MONTOS_AMANECIDAS
=
"
http://sistem16:666/
montoAmanecidas"
;
const
URI_POLICIA_CONCEPTOSEDES
=
"
http://sistem16:666/
conceptoSedes"
;
const
URI_POLICIA_REPORTE_MONTOS
=
"
http://sistem16:666/
reporteMontosPolicias"
;
const
URI_TIPOROL_POLICIA
=
"tipoRolPolicias"
;
const
URI_FRECUENCIA_ROL_POLICIA
=
"frecuenciaRolPolicias"
;
const
URI_SEDES
=
"sedes"
;
const
URI_ESTADO_ASISTENCIA
=
"estadoAsistencia"
;
const
URI_POLICIAS
=
"policias"
;
const
URI_ROL_POLICIA
=
"rolesPolicias"
;
const
URI_POLICIAS_ASISTENCIA
=
"asistenciaPolicias"
;
const
URI_POLICIA_MONTOS_AMANECIDAS
=
"montoAmanecidas"
;
const
URI_POLICIA_CONCEPTOSEDES
=
"conceptoSedes"
;
const
URI_POLICIA_REPORTE_MONTOS
=
"reporteMontosPolicias"
;
//</editor-fold>
...
...
@@ -60,7 +66,7 @@ $.extend($.fn.dataTable.defaults, {
}
});
a
xios
.
interceptors
.
response
.
use
(
function
(
response
)
{
a
jaxWebService
.
interceptors
.
response
.
use
(
function
(
response
)
{
// Do something with response data
let
respuesta
=
{
status
:
response
.
data
.
status
||
true
,
...
...
@@ -125,7 +131,7 @@ const ajaxRequestGeneral = obj => {
let
createSelectOptions
=
(
obj
,
valueName
,
textName
)
=>
{
let
options
=
''
obj
.
forEach
((
data
)
=>
{
options
+=
`
<option value="
${
data
[
valueName
]}
">
${
data
[
textName
]}
<
/option>`
options
+=
`
< option value = "
${
data
[
valueName
]}
" >
${
data
[
textName
]}
<
/option>`
})
return
options
}
...
...
@@ -160,7 +166,7 @@ let customSwal = {
*/
let
getClosest
=
(
elem
,
selector
)
=>
{
// Element.matches() polyfill
// Element.matches() polyfill
if
(
!
Element
.
prototype
.
matches
)
{
Element
.
prototype
.
matches
=
Element
.
prototype
.
matchesSelector
||
...
...
@@ -176,7 +182,7 @@ let getClosest = (elem, selector) => {
return
i
>
-
1
}
}
// Get closest match
// Get closest match
for
(;
elem
&&
elem
!==
document
;
elem
=
elem
.
parentNode
)
{
if
(
elem
.
matches
(
selector
))
return
elem
...
...
@@ -219,13 +225,6 @@ let logOut = () => {
window
.
location
.
href
=
'../vistas/logout'
;
});
};
function
defaultConfigDatePicker
()
{
$
(
'.datepicker'
).
datepicker
({
dateFormat
:
'dd/mm/yy'
,
...
...
@@ -236,7 +235,6 @@ function defaultConfigDatePicker() {
maxDate
:
'+1Y'
,
inline
:
true
});
$
.
datepicker
.
regional
[
'es'
]
=
{
closeText
:
'Cerrar'
,
prevText
:
'<Ant'
,
...
...
@@ -287,8 +285,6 @@ function defaultConfigDatePicker() {
}})
}
})(
jQuery
);
function
primeraLetraMayuscula
(
str
)
{
let
strLower
=
str
.
toLowerCase
();
let
caracter
=
strLower
.
substr
(
0
,
1
).
toUpperCase
();
...
...
@@ -306,11 +302,10 @@ data: [],
classNameForDatatable
:
``
,
footerFilter
:
false
,
highlighting
:
true
})
=>
{
})
=>
{
let
data
=
jsonForDatatable
.
data
;
let
columns
=
jsonForDatatable
.
columns
;
let
columnDefs
=
jsonForDatatable
.
columns
;
let
wrapsNameDatatable
=
jsonForDatatable
.
wrapsNameDatatable
let
nameDatatable
=
`
${
wrapsNameDatatable
}
-datatable`
let
classNameForDatatable
=
jsonForDatatable
.
classNameForDatatable
...
...
@@ -320,7 +315,6 @@ data: [],
let
table_head
=
`
<table id="
${
nameDatatable
}
" class="
${
classNameForDatatable
}
table-hover" cellspacing="0" width="100%">`
;
let
table_head_th
=
`
<thead>
<tr>`
;
...
...
@@ -362,9 +356,8 @@ data: [],
let
table_foot
=
`</table>`
$
(
`#
${
wrapsNameDatatable
}
`
).
empty
().
append
(
`
${
table_head
}${
table_head_th
}${
table_foot_th
}${
table_foot
}
`
);
if
(
footerFilter
)
{
// Setup - add a text input to each footer cell
// Setup - add a text input to each footer cell
$
(
`#
${
nameDatatable
}
tfoot th`
).
each
(
function
()
{
var
title
=
$
(
this
).
text
();
$
(
this
).
html
(
`<input type="text" class="form-control" placeholder="
${
title
}
" />`
);
...
...
@@ -381,11 +374,9 @@ data: [],
rightColumns
:
1
}
});
if
(
footerFilter
)
{
// DataTable
// DataTable
let
table
=
$
(
`#
${
nameDatatable
}
`
).
DataTable
();
// Apply the search
table
.
columns
().
every
(
function
()
{
var
that
=
this
;
...
...
@@ -397,7 +388,6 @@ data: [],
}
});
});
$
(
`#
${
wrapsNameDatatable
}
.dataTables_scrollBody`
).
appendTo
(
`#
${
wrapsNameDatatable
}
.dataTables_scroll`
);
}
...
...
@@ -406,7 +396,6 @@ data: [],
$
(
`#
${
nameDatatable
}
tbody`
)
.
on
(
'mouseenter'
,
'td'
,
function
()
{
let
colIdx
=
table
.
cell
(
this
).
index
().
column
;
$
(
table
.
cells
().
nodes
()).
removeClass
(
'highlight'
);
$
(
table
.
column
(
colIdx
).
nodes
()).
addClass
(
'highlight'
);
});
...
...
src/main/webapp/js/pages/crearRolPolicia.js
View file @
865d1229
...
...
@@ -16,7 +16,7 @@ function initDatePicker(selectorName) {
function
listarRolesPolicias
(
objParams
=
{})
{
a
xios
.
get
(
URI_ROL_POLICIA
,
objParams
).
then
((
response
)
=>
{
a
jaxWebService
.
get
(
URI_ROL_POLICIA
,
objParams
).
then
((
response
)
=>
{
debugger
let
columns
=
[
{
...
...
@@ -104,7 +104,7 @@ function listarRolesPolicias(objParams = {}) {
let
data
=
nodes
.
datatable
.
DataTable
().
row
(
$
(
this
).
parents
(
"tr"
)).
data
();
console
.
log
(
data
);
a
xios
.
get
(
"modals/policias/mantenimientoRol/detalleRol.jspf"
).
then
((
response
)
=>
{
a
jaxWebService
.
get
(
"modals/policias/mantenimientoRol/detalleRol.jspf"
).
then
((
response
)
=>
{
debugger
swal
({
title
:
'<strong>Detalle de rol</strong>'
,
...
...
@@ -136,7 +136,7 @@ function listarRolesPolicias(objParams = {}) {
}
function
listarTipoRoles
()
{
a
xios
.
get
(
URI_TIPOROL_POLICIA
).
then
((
result
)
=>
{
a
jaxWebService
.
get
(
URI_TIPOROL_POLICIA
).
then
((
result
)
=>
{
let
roles
=
result
.
data
;
let
html
=
"<option>[SELECCIONE]</option>"
;
roles
.
forEach
(
rol
=>
html
+=
`<option value="
${
rol
.
codigo
}
">
${
rol
.
descripcion
}
</option>`
);
...
...
@@ -146,7 +146,7 @@ function listarTipoRoles() {
function
listarFrecuenciaRol
()
{
a
xios
.
get
(
URI_FRECUENCIA_ROL_POLICIA
).
then
((
result
)
=>
{
a
jaxWebService
.
get
(
URI_FRECUENCIA_ROL_POLICIA
).
then
((
result
)
=>
{
let
frecuenciasRol
=
result
.
data
;
let
html
=
"<option>[SELECCIONE]</option>"
;
frecuenciasRol
.
forEach
(
f
=>
html
+=
`<option value="
${
f
.
codigo
}
">
${
f
.
descripcion
}
</option>`
);
...
...
@@ -155,7 +155,7 @@ function listarFrecuenciaRol() {
}
function
listarSedes
(
selectorName
)
{
a
xios
.
get
(
URI_SEDES
).
then
((
result
)
=>
{
a
jaxWebService
.
get
(
URI_SEDES
).
then
((
result
)
=>
{
let
sedes
=
result
.
data
;
sedes
=
_
.
orderBy
(
sedes
,
s
=>
s
.
descripcion
);
let
html
=
`<option value="">[SELECCIONE]</option>`
;
...
...
@@ -165,7 +165,7 @@ function listarSedes(selectorName) {
}
function
listarPolicias
(
selectorName
)
{
a
xios
.
get
(
URI_POLICIAS
).
then
((
result
)
=>
{
a
jaxWebService
.
get
(
URI_POLICIAS
).
then
((
result
)
=>
{
let
policias
=
result
.
data
;
policias
=
_
.
orderBy
(
policias
,
p
=>
p
.
nombres
);
let
html
=
`<option value="">[SELECCIONE]</option>`
;
...
...
@@ -237,7 +237,7 @@ function registrarRolPolicia() {
estado
};
a
xios
.
post
(
URI_ROL_POLICIA
,
params
)
a
jaxWebService
.
post
(
URI_ROL_POLICIA
,
params
)
.
then
((
result
)
=>
{
result
.
data
=
formatResponse
(
result
);
debugger
;
...
...
@@ -295,7 +295,7 @@ function guardarCambios() {
function
mostrarModalNuevoRol
()
{
a
xios
.
get
(
"modals/policias/mantenimientoRol/crearRol.jspf"
).
then
((
response
)
=>
{
a
jaxModal
.
get
(
"modals/policias/mantenimientoRol/crearRol.jspf"
).
then
((
response
)
=>
{
swal
({
title
:
'<strong>Nuevo Rol</strong>'
,
// type: 'info',
...
...
src/main/webapp/js/pages/index.js
View file @
865d1229
...
...
@@ -40,15 +40,15 @@ const DOMEvents = {
let
params
=
{
usuario
:
document
.
querySelector
(
'#usuario'
).
value
.
trim
(),
pass
:
document
.
querySelector
(
'#pass'
).
value
,
codigoProyecto
:
CODIGO_PROYECTO
_ASISTENCIA
codigoProyecto
:
CODIGO_PROYECTO
}
httpRequest
.
login
(
params
)
.
then
(
data
=>
{
$
.
unblockUI
();
console
.
log
(
data
)
if
(
data
.
status
)
{
window
.
location
.
href
=
"../vistas/main.jsp"
;
}
else
{
if
(
data
.
status
)
{
window
.
location
.
href
=
"../vistas/main.jsp"
;
}
else
{
customSwal
.
alert
(
'¡Error!'
,
"Usuario o contraseña incorrecto."
,
'error'
)
}
})
...
...
src/main/webapp/js/pages/navbar.js
View file @
865d1229
...
...
@@ -33,7 +33,7 @@ let DOMNav = {
let
url
=
proyectos
[
i
].
url
;
//produccion
let
cp
=
proyectos
[
i
].
codigoProyecto
;
//produccion
if
(
cp
===
CODIGO_PROYECTO
_ASISTENCIA
)
{
if
(
cp
===
CODIGO_PROYECTO
)
{
continue
;
}
...
...
src/main/webapp/vistas/index.jsp
View file @
865d1229
...
...
@@ -115,7 +115,6 @@
<script
type=
"text/javascript"
src=
"../plantilla/assets/js/plugins/forms/styling/uniform.min.js"
></script>
<script
type=
"text/javascript"
src=
"../plantilla/assets/js/core/app.js"
></script>
<script
type=
"text/javascript"
src=
"../plantilla/assets/js/pages/login.js"
></script>
<!-- /theme JS files -->
<!--javascript template-->
<script
src=
"../js/lib/cookies.js"
type=
"text/javascript"
></script>
...
...
src/main/webapp/vistas/templates/header.jsp
View file @
865d1229
...
...
@@ -15,9 +15,11 @@
<script src="../js/lib/cookies.js" type="text/javascript"></script>
<!--<script src="../js/pages/validate.js" type="text/javascript"></script>-->
<script>
var sidebar = <%=(String)request.getSession().getAttribute("menu")%>;
var nombreUsuario = "<%=(String)request.getSession().getAttribute("nombre")%>";
var rolesUsuario = "<%=(String)request.getSession().getAttribute("roles")%>";
var sidebar = <%=(String) request.getSession().getAttribute("menu")%>;
var nombreUsuario = "<%=(String) request.getSession().getAttribute("nombre")%>";
var rolesUsuario = "<%=(String) request.getSession().getAttribute("roles")%>";
var contextPath = "${pageContext.request.contextPath}/";
</script>
\ 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