Commit 6b265b14 by Billy Larru

[RENAME cambiando la extension de jsp a jspf a los que faltaban]

parent 17bc6b63
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="target/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Asistencia</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
eclipse.preferences.version=1
org.eclipse.jdt.apt.aptEnabled=false
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.processAnnotations=disabled
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
......@@ -46,11 +46,11 @@ public class RequestsFilter implements Filter {
HttpServletResponse response = (HttpServletResponse) resp;
String uri = request.getRequestURI();
// if (uri.contains("vistas/modals/")) {
// chain.doFilter(req, resp);
// return;
// }
if (uri.contains("vistas/modals/")) {
chain.doFilter(req, resp);
return;
}
System.out.println("ha pasado el if modals");
if (uri.endsWith("vistas/index.jsp")) {
if (request.getSession().getAttribute("codigo") != null) {
response.sendRedirect("main.jsp");
......
......@@ -128,7 +128,7 @@ function mostrarMensajeResultadoModal(result = {}){
}
function mostrarModalEdicion(data = {}) {
ajaxModal.get("policias/asignarMontoAmanecida/editarMontoConcepto.jsp").then((response) => {
ajaxModal.get("policias/asignarMontoAmanecida/editarMontoConcepto.jspf").then((response) => {
swal({
title: '<strong>Editar Montos de amanecidas</strong>',
html: response.data,
......
......@@ -215,7 +215,7 @@ function mostrarMensajeResultadoModal(result = {}) {
}
function mostrarModalRegistroAsistencia(data = {}) {
ajaxModal.get("policias/controlAsistencia/registrarAsistencia.jsp").then((response) => {
ajaxModal.get("policias/controlAsistencia/registrarAsistencia.jspf").then((response) => {
swal({
title: '<strong>Registrar Asistencia</strong>',
html: response.data,
......
......@@ -201,7 +201,7 @@ const justificar = (estadoJustificacion = 1) => {
showConfirmButton: false,
timer: 1500
}).then((result) => {
window.location.href = `${contextPath}vistas/listadoJustificacion.jsp`
window.location.href = `${contextPath}vistas/listadoJustificacion.jspf`
});
}
})
......
......@@ -80,7 +80,7 @@ const mostrarModalVerDetalleJustificacion = (data) => {
debugger
localStorage.setItem('data', JSON.stringify(data))
// localStorage.setItem('filtros', JSON.stringify(filtros))
location.href = `${baseURLModals}justificaciones/evaluarJustificacion.jsp`
location.href = `${baseURLModals}justificaciones/evaluarJustificacion.jspf`
}
const listarJustificaciones = (objParams = {}) => {
ajaxWebService.get(URI_JUSTIFICACION, objParams).then((response) => {
......
......@@ -126,7 +126,7 @@ function mostrarMensajeResultadoModalRegistrar(result = {}){
}
function mostrarModalEdicion(data = {}) {
ajaxModal.get("policias/mantenimientoSedes/editarConceptoSede.jsp").then((response) => {
ajaxModal.get("policias/mantenimientoSedes/editarConceptoSede.jspf").then((response) => {
swal({
title: '<strong>Editar</strong>',
html: response.data,
......@@ -194,7 +194,7 @@ function mostrarModalEliminacion(data) {
}
function mostrarModalRegistrar(data = {}) {
ajaxModal.get("policias/mantenimientoSedes/registrarConceptoSede.jsp").then((response) => {
ajaxModal.get("policias/mantenimientoSedes/registrarConceptoSede.jspf").then((response) => {
swal({
title: '<strong>Asignar concepto a sede</strong>',
html: response.data,
......
......@@ -204,7 +204,7 @@ const registrarNuevaTolerancia = () => {
};
const mostrarModalNuevaTolerancia = () => {
ajaxModal.get("administrativos/tolerancia/individual/registroTolerancia.jsp").then((response) => {
ajaxModal.get("administrativos/tolerancia/individual/registroTolerancia.jspf").then((response) => {
swal({
title: '<strong>Nueva Tolerancia</strong>',
// type: 'info',
......@@ -280,7 +280,7 @@ const inicializarInputsModalVerDetalleTolerancia = (data) => {
const mostrarModalVerDetalleTolerancia = (data) => {
ajaxModal.get("administrativos/tolerancia/individual/detalleTolerancia.jsp").then((response) => {
ajaxModal.get("administrativos/tolerancia/individual/detalleTolerancia.jspf").then((response) => {
swal({
title: '<strong>Detalle Tolerancia</strong>',
// type: 'info',
......@@ -301,7 +301,7 @@ const mostrarModalVerDetalleTolerancia = (data) => {
});
};
const mostrarModalEditarTolerancia = (data) => {
ajaxModal.get("administrativos/tolerancia/individual/editarTolerancia.jsp").then((response) => {
ajaxModal.get("administrativos/tolerancia/individual/editarTolerancia.jspf").then((response) => {
swal({
title: '<strong>Editar Tolerancia</strong>',
// type: 'info',
......
......@@ -114,7 +114,7 @@ const registrarToleranciaMasiva = () => {
const mostrarModalAsignarTolerancia = () => {
ajaxModal.get("administrativos/tolerancia/masiva/registroTolerancia.jsp").then((response) => {
ajaxModal.get("administrativos/tolerancia/masiva/registroTolerancia.jspf").then((response) => {
swal({
title: '<strong>Registro de Tolerancia Masiva</strong>',
// type: 'info',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment