Commit f26f65ff by Alonso Moreno Postigo

[EDIT] PersonaSqlserverDAO - ResponseHelper

parent d03d3150
......@@ -13,9 +13,6 @@ import java.io.Serializable;
*/
public class ResponseHelper implements Serializable {
private String resultado;
private String mensaje;
private Object data;
private boolean status;
private String message;
......@@ -40,22 +37,6 @@ public class ResponseHelper implements Serializable {
this.message = message;
}
public String getResultado() {
return resultado;
}
public void setResultado(String resultado) {
this.resultado = resultado;
}
public String getMensaje() {
return mensaje;
}
public void setMensaje(String mensaje) {
this.mensaje = mensaje;
}
public Object getData() {
return data;
}
......
......@@ -17,7 +17,7 @@ $(document).ready(function () {
$('#btn_cerar_registrar_persona').on('click', function () {
$("form_registrar_persona").validate().resetForm();
});
filtrarPersona();
});
......@@ -240,7 +240,7 @@ function listarPersona() {
var json = {
codigo: data_row.codigo
};
console.log(data_row.codigo);
swal({
title: "¿Estás seguro?",
text: "¿Desea desactivar a " + data_row.apellidos + ", " + data_row.nombres + " ?",
......@@ -277,7 +277,7 @@ function listarPersona() {
var json = {
codigo: data_row.codigo
};
console.log(data_row.codigo);
swal({
title: "¿Estás seguro?",
text: "¿Desea activar a " + data_row.apellidos + ", " + data_row.nombres + " ?",
......
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