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
6b2d5aa5
Commit
6b2d5aa5
authored
Sep 20, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT periodos de cierre, cambiando el estado del periodo]
parent
f8f805d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
registro_periodo_cierre.js
src/main/webapp/js/pages/registro_periodo_cierre.js
+40
-0
No files found.
src/main/webapp/js/pages/registro_periodo_cierre.js
View file @
6b2d5aa5
...
...
@@ -256,7 +256,47 @@ const editarPeriodoCierre = (data) => {
}
const
mostrarModalCierrePeriodo
=
(
data
)
=>
{
let
{
id
,
estado
}
=
data
;
let
titulo
=
""
;
let
textoConfirmacion
=
""
let
tituloOperacion
=
""
;
if
(
estado
)
{
titulo
=
`Cerrar el periodo «
${
data
.
mescierre_descripcion
}
»?`
;
textoConfirmacion
=
'Sí!'
;
tituloOperacion
=
'¡Periodo cerrado exitosamente!'
;
estado
=
0
;
}
else
{
titulo
=
`Abrir el periodo «
${
data
.
mescierre_descripcion
}
»?`
;
textoConfirmacion
=
'Sí!'
;
tituloOperacion
=
'¡Periodo abierto exitosamente!'
;
estado
=
1
;
}
swal
({
title
:
titulo
,
text
:
""
,
type
:
'question'
,
showCancelButton
:
true
,
confirmButtonColor
:
'#3085d6'
,
cancelButtonColor
:
'#d33'
,
confirmButtonText
:
textoConfirmacion
}).
then
((
result
)
=>
{
if
(
result
.
value
)
{
ajaxWebService
.
patch
(
`
${
URI_PERIODOCIERRE
}
/
${
id
}
`
,
{
estado
}).
then
((
response
)
=>
{
if
(
response
.
status
)
{
swal
({
type
:
'success'
,
title
:
tituloOperacion
,
showConfirmButton
:
false
,
timer
:
1500
});
listarPeriodosCierre
()
}
});
}
});
}
const
aplicarFiltro
=
()
=>
{
...
...
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