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
68982c86
Commit
68982c86
authored
Aug 29, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proyectado comparativo arreglado
parent
13a75ffd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
24 deletions
+81
-24
general.js
src/main/webapp/js/general.js
+64
-14
comparativo_proyeccion_policias.js
src/main/webapp/js/pages/comparativo_proyeccion_policias.js
+17
-10
No files found.
src/main/webapp/js/general.js
View file @
68982c86
...
...
@@ -444,18 +444,67 @@ let initDatePicker = (...selectorName) => {
}
const
setTiposContratoOnSelect
=
(
nodeIdentifier
,
optionAll
=
true
)
=>
{
ajaxWebService
.
get
(
`contratoTipo`
)
.
then
((
response
)
=>
{
let
$select
=
$
(
`
${
nodeIdentifier
}
`
)
let
option
if
(
optionAll
)
{
option
=
`<option value="">TODOS</option>`
}
response
.
data
.
forEach
((
value
,
id
)
=>
{
option
+=
`<option value="
${
value
.
id
}
">
${
value
.
nombre
}
</option>`
})
$select
.
html
(
option
).
selectpicker
()
})
const
setSelects
=
(
nodeIdentifier
)
=>
{
$
(
`
${
nodeIdentifier
}
`
).
select2
({
containerCssClass
:
'select-xs'
,
ajax
:
{
url
:
`http://sistem16:666/policias`
,
dataType
:
`json`
,
delay
:
1000
,
data
:
function
(
params
)
{
return
{
q
:
params
.
term
,
// search term
page
:
params
.
page
};
},
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
// scrolling can be used
params
.
page
=
params
.
page
||
1
;
return
{
results
:
data
,
pagination
:
{
more
:
(
params
.
page
*
30
)
<
data
.
length
}
};
},
cache
:
true
},
placeholder
:
`Buscar`
,
allowClear
:
true
,
escapeMarkup
:
function
(
markup
)
{
return
markup
;
},
// let our custom formatter work
minimumInputLength
:
1
,
templateResult
:
formatRepo
,
templateSelection
:
formatRepoSelection
});
function
formatRepo
(
repo
)
{
if
(
repo
.
loading
)
{
return
repo
.
text
;
}
var
markup
=
`
<div class='select2-result-repository clearfix'>
<div class='select2-result-repository__title'>
${
repo
.
nombres
}
</div>`
;
markup
+=
`
<div class='select2-result-repository__statistics'>
<div class='select2-result-repository__forks'>
${
repo
.
dni
}
</div>
</div>
</div>`
return
markup
;
}
function
formatRepoSelection
(
repo
)
{
if
(
repo
.
id
)
{
return
repo
.
nombres
;
}
else
{
return
repo
.
text
;
}
}
}
\ No newline at end of file
src/main/webapp/js/pages/comparativo_proyeccion_policias.js
View file @
68982c86
...
...
@@ -115,18 +115,25 @@ function getColumnDefs() {
function
listarPolicias
(
selectorName
)
{
ajaxWebService
.
get
(
URI_POLICIAS
).
then
((
result
)
=>
{
let
policias
=
result
.
data
;
policias
=
_
.
orderBy
(
policias
,
p
=>
p
.
nombres
);
let
html
=
`<option value="">[TODOS]</option>`
;
policias
.
forEach
(
p
=>
html
+=
`<option documento_identidad="
${
p
.
dni
}
" value="
${
p
.
id
}
">
${
p
.
nombres
}
</option>`
);
$
(
`
${
selectorName
}
`
).
html
(
html
);
$
(
'.select-search'
).
select2
();
});
setSelects
(
selectorName
);
}
function
verReporte
(
objParams
=
{})
{
ajaxWebService
.
get
(
URI_POLICIA_PROYECTADO_COMPARATIVO
,
objParams
).
then
((
response
)
=>
{
function
verReporte
()
{
debugger
// let policia_nombres = $("#cboPolicias option:selected").text();
let
fecha_inicio
=
$
(
"#dpFechaInicio"
).
val
();
let
jsonPolicia
=
$
(
'#cboPolicias'
).
select2
(
'data'
)[
0
];
let
dni
=
jsonPolicia
?
jsonPolicia
.
dni
:
""
;
let
params
=
cleanQueryParams
({
policia_dni
:
dni
,
fecha_entrada
:
fecha_inicio
});
ajaxWebService
.
get
(
URI_POLICIA_PROYECTADO_COMPARATIVO
,
{
params
}).
then
((
response
)
=>
{
let
columns
=
getColumns
();
let
columnDefs
=
getColumnDefs
();
...
...
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