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
93c49878
Commit
93c49878
authored
Sep 14, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT detalle montos administrativos, agregando select para seleccionar todo]
parent
49572ee0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
5 deletions
+36
-5
detalle_montos_administrativos.js
src/main/webapp/js/pages/detalle_montos_administrativos.js
+28
-5
detalleMontosAdministrativos.jsp
...os/montosAdministrativos/detalleMontosAdministrativos.jsp
+8
-0
No files found.
src/main/webapp/js/pages/detalle_montos_administrativos.js
View file @
93c49878
...
...
@@ -4,9 +4,12 @@ let filtros;
function
getColumns
()
{
let
columns
=
[
{
title
:
`N°`
,
data
:
`id`
,
className
:
'text-center'
title
:
`<input type="checkbox" id="chkSelectAll">`
,
data
:
null
,
className
:
'text-center'
,
render
:
(
data
)
=>
{
return
`<input type="checkbox" class="chkFila">`
;
}
},
{
title
:
"FECHA"
,
...
...
@@ -27,7 +30,7 @@ function getColumns() {
}
},
{
title
:
`DESCRIP
ICO
N`
,
title
:
`DESCRIP
CIÓ
N`
,
data
:
`descripcion`
,
className
:
'text-center'
},
...
...
@@ -86,9 +89,11 @@ const listarAsistenciaMensual = (objParams = {}) => {
},
classNameForDatatable
,
).
then
((
nodes
)
=>
{
$
(
".chkFi
rma, #chkFirmaTodo
"
).
uniform
();
$
(
".chkFi
la, #chkSelectAll
"
).
uniform
();
nodes
.
container
.
off
()
.
on
(
"click"
,
"#chkSelectAll"
,
(
e
)
=>
seleccionarCheckBoxTodo
(
$
(
e
.
currentTarget
)))
.
on
(
"click"
,
".chkFila"
,
(
e
)
=>
seleccionarCheckBox
())
// .on("click", ".verdetalle", function () {
// let data = nodes.datatable.DataTable().row($(this).parents("tr")).data();
// mostrarModalVerDetalleDescuentoAsistencia(data);
...
...
@@ -98,6 +103,24 @@ const listarAsistenciaMensual = (objParams = {}) => {
});
};
const
seleccionarCheckBoxTodo
=
(
tr
)
=>
{
if
(
tr
.
prop
(
'checked'
))
{
$
(
'.chkFila'
).
prop
(
'checked'
,
true
).
uniform
()
}
else
{
$
(
'.chkFila'
).
prop
(
'checked'
,
false
).
uniform
()
}
}
const
seleccionarCheckBox
=
()
=>
{
if
(
$
(
'.chkFila:checked'
).
length
===
$
(
'.chkFila'
).
length
)
{
$
(
'#chkSelectAll'
).
prop
(
'checked'
,
true
).
uniform
()
}
else
{
$
(
'#chkSelectAll'
).
prop
(
'checked'
,
false
).
uniform
()
}
}
const
recibirData
=
()
=>
{
let
data
=
localStorage
.
getItem
(
'data'
)
let
filter
=
localStorage
.
getItem
(
'filtros'
)
...
...
src/main/webapp/vistas/modals/administrativos/montosAdministrativos/detalleMontosAdministrativos.jsp
View file @
93c49878
...
...
@@ -49,6 +49,14 @@
<div
class=
"panel panel-primary card-3"
style=
"margin-top: 30px"
>
<div
class=
"panel-heading"
style=
"padding: 8px 15px"
>
<h6
class=
"panel-title"
style=
"font-size: 15px; font-family: inherit"
>
Asistencias
</h6>
<div
class=
"heading-elements"
>
<div
class=
"btn-group heading-btn"
>
<button
type=
"button"
class=
"btn bg-slate border-slate-600 btn-icon dropdown-toggle"
data-toggle=
"dropdown"
><i
class=
"icon-menu6"
></i>
<span
class=
"caret"
></span></button>
<ul
class=
"dropdown-menu dropdown-menu-right"
>
<li><a
href=
"#"
id=
"btnFirmo"
>
Vincular a una justificación
</a></li>
<li><a
href=
"#"
id=
"btnNoFirmo"
>
Modificar descuento
</a></li>
</div>
</div>
</div>
<div
id=
"divDatatable"
></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