Commit e728612d by Billy Larru

formeateando respuesta de axios

parent 8efa7180
......@@ -345,4 +345,12 @@ const makeDatatable = (jsonForDatatable = { data: [], columns: [], columnDefs: [
const randomIntFromInterval = (minimum, maximum) => {
return Math.round(Math.random() * (maximum - minimum) + minimum);
}
function formatResponse(resultAxios) {
return {
status: resultAxios.data.status || true,
message: resultAxios.data.message || `Operación exitosa`,
data: resultAxios.data.data || result.data
};
}
\ No newline at end of file
......@@ -198,7 +198,7 @@ function registrarRolPolicia() {
let sede_descripcion = $("#cboSedesModal option:selected").text();
let estado = 1;
let policia_dni = $("#cboPolicias option:selected").attr("documento_identidad");
debugger
let fechas = generarFechas(fecha_inicio, fecha_fin);
let detalles_rol = [];
......@@ -232,18 +232,7 @@ function registrarRolPolicia() {
axios.post(URI_ROL_POLICIA, params)
.then((result) => {
debugger;
function formatSo(resultAxios) {
return {
status: resultAxios.data.status || true,
message: resultAxios.data.message || `Operación exitosa`,
data: resultAxios.data.data || result.data
};
}
debugger;
result.data = formatSo(result);
result.data = formatResponse(result);
debugger;
if (result.data.status) {
listarRolesPolicias();
......
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