Compare commits
32 Commits
Fix--Audit
...
feature/rb
| Author | SHA1 | Date | |
|---|---|---|---|
| dc5f9fd6ce | |||
| 546a411df8 | |||
|
|
75885dc3a9 | ||
|
|
078297cd61 | ||
|
|
06f2485336 | ||
| b262c7098f | |||
|
|
1374dc22a3 | ||
| 7e1d6ff05b | |||
|
|
0fc3b66090 | ||
| f8a81a4ef6 | |||
|
|
b0ac0ce06b | ||
| 80701159fb | |||
| b29c586524 | |||
| 2fd3ab5483 | |||
| f9ece2923f | |||
| 96e0b4eea2 | |||
| 7c40275381 | |||
| 407597c959 | |||
| 07facb8ae2 | |||
| 0d60156b7f | |||
|
|
5a0e9a8259 | ||
| a36178df1b | |||
| 50716e363d | |||
| 4b66b4944a | |||
| dfddb418d0 | |||
|
|
d46ea97340 | ||
| 29e0f1a68d | |||
| 5580c3cc91 | |||
| bb59d1e487 | |||
| 06ec641691 | |||
| a91ef2f11a | |||
| 97a39a6d37 |
10
package-lock.json
generated
10
package-lock.json
generated
@@ -15,6 +15,7 @@
|
|||||||
"chart.js": "^4.5.0",
|
"chart.js": "^4.5.0",
|
||||||
"highlight.js": "^11.11.1",
|
"highlight.js": "^11.11.1",
|
||||||
"jszip": "^3.10.1",
|
"jszip": "^3.10.1",
|
||||||
|
"lucide-react": "^0.562.0",
|
||||||
"react": "^19.1.0",
|
"react": "^19.1.0",
|
||||||
"react-chartjs-2": "^5.3.0",
|
"react-chartjs-2": "^5.3.0",
|
||||||
"react-dom": "^19.1.0",
|
"react-dom": "^19.1.0",
|
||||||
@@ -2603,6 +2604,15 @@
|
|||||||
"yallist": "^3.0.2"
|
"yallist": "^3.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/lucide-react": {
|
||||||
|
"version": "0.562.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.562.0.tgz",
|
||||||
|
"integrity": "sha512-82hOAu7y0dbVuFfmO4bYF1XEwYk/mEbM5E+b1jgci/udUBEE/R7LF5Ip0CCEmXe8AybRM8L+04eP+LGZeDvkiw==",
|
||||||
|
"license": "ISC",
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/memoize-one": {
|
"node_modules/memoize-one": {
|
||||||
"version": "5.2.1",
|
"version": "5.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz",
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
"chart.js": "^4.5.0",
|
"chart.js": "^4.5.0",
|
||||||
"highlight.js": "^11.11.1",
|
"highlight.js": "^11.11.1",
|
||||||
"jszip": "^3.10.1",
|
"jszip": "^3.10.1",
|
||||||
|
"lucide-react": "^0.562.0",
|
||||||
"react": "^19.1.0",
|
"react": "^19.1.0",
|
||||||
"react-chartjs-2": "^5.3.0",
|
"react-chartjs-2": "^5.3.0",
|
||||||
"react-dom": "^19.1.0",
|
"react-dom": "^19.1.0",
|
||||||
|
|||||||
BIN
public/images/empresaria001.webp
Normal file
BIN
public/images/empresaria001.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 MiB |
BIN
public/images/sistemagestion002.webp
Normal file
BIN
public/images/sistemagestion002.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 MiB |
28
src/App.jsx
28
src/App.jsx
@@ -14,6 +14,9 @@ import LandingAnimated from './pages/LandingAnimated';
|
|||||||
import Expedientes from './pages/Expedientes';
|
import Expedientes from './pages/Expedientes';
|
||||||
import Organization from './pages/Organization';
|
import Organization from './pages/Organization';
|
||||||
import Users from './pages/Users';
|
import Users from './pages/Users';
|
||||||
|
import UserForm from './pages/UserForm';
|
||||||
|
import Profiles from './pages/Profiles';
|
||||||
|
import ProfileForm from './pages/ProfileForm';
|
||||||
import Reports from './pages/Reports';
|
import Reports from './pages/Reports';
|
||||||
import Settings from './pages/Settings';
|
import Settings from './pages/Settings';
|
||||||
import Importers from './pages/Importers';
|
import Importers from './pages/Importers';
|
||||||
@@ -76,6 +79,31 @@ function AppContent() {
|
|||||||
<Users />
|
<Users />
|
||||||
</RequireAuth>
|
</RequireAuth>
|
||||||
} />
|
} />
|
||||||
|
<Route path="/users/new" element={
|
||||||
|
<RequireAuth>
|
||||||
|
<UserForm />
|
||||||
|
</RequireAuth>
|
||||||
|
} />
|
||||||
|
<Route path="/users/:id/edit" element={
|
||||||
|
<RequireAuth>
|
||||||
|
<UserForm />
|
||||||
|
</RequireAuth>
|
||||||
|
} />
|
||||||
|
<Route path="/profiles" element={
|
||||||
|
<RequireAuth>
|
||||||
|
<Profiles />
|
||||||
|
</RequireAuth>
|
||||||
|
} />
|
||||||
|
<Route path="/profiles/new" element={
|
||||||
|
<RequireAuth>
|
||||||
|
<ProfileForm />
|
||||||
|
</RequireAuth>
|
||||||
|
} />
|
||||||
|
<Route path="/profiles/:id/edit" element={
|
||||||
|
<RequireAuth>
|
||||||
|
<ProfileForm />
|
||||||
|
</RequireAuth>
|
||||||
|
} />
|
||||||
<Route path="/reports" element={
|
<Route path="/reports" element={
|
||||||
<RequireAuth>
|
<RequireAuth>
|
||||||
<Reports />
|
<Reports />
|
||||||
|
|||||||
19
src/api/apiError.js
Normal file
19
src/api/apiError.js
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
/**
|
||||||
|
* Extrae el mensaje de error de una respuesta HTTP fallida.
|
||||||
|
* Lee el JSON del body y devuelve `detail`, `message` o `error` del backend.
|
||||||
|
* Si no hay JSON, devuelve el texto o un fallback genérico con el status.
|
||||||
|
*/
|
||||||
|
export async function extractApiError(response) {
|
||||||
|
const status = response.status;
|
||||||
|
try {
|
||||||
|
const contentType = response.headers.get('content-type') || '';
|
||||||
|
if (contentType.includes('application/json')) {
|
||||||
|
const body = await response.json();
|
||||||
|
return body.detail || body.message || body.error || `Error ${status}`;
|
||||||
|
}
|
||||||
|
const text = await response.text();
|
||||||
|
return text || `Error ${status}`;
|
||||||
|
} catch {
|
||||||
|
return `Error ${status}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
119
src/api/coves.js
119
src/api/coves.js
@@ -1,95 +1,56 @@
|
|||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
export const fetchPedimentoCoves = async (pedimentoId, page = 1, pageSize = 10, filters = {}) => {
|
export const fetchPedimentoCoves = async (pedimentoId, page = 1, pageSize = 10, filters = {}) => {
|
||||||
try {
|
const params = new URLSearchParams({
|
||||||
const params = new URLSearchParams({
|
pedimento: pedimentoId,
|
||||||
pedimento: pedimentoId,
|
page: page.toString(),
|
||||||
page: page.toString(),
|
page_size: pageSize.toString(),
|
||||||
page_size: pageSize.toString(),
|
});
|
||||||
});
|
|
||||||
|
|
||||||
// Agregar filtros si existen
|
if (filters.numero_cove) params.append('numero_cove__icontains', filters.numero_cove);
|
||||||
if (filters.numero_cove) {
|
if (filters.cove_descargado !== undefined && filters.cove_descargado !== '') params.append('cove_descargado', filters.cove_descargado);
|
||||||
params.append('numero_cove__icontains', filters.numero_cove);
|
if (filters.acuse_cove_descargado !== undefined && filters.acuse_cove_descargado !== '') params.append('acuse_cove_descargado', filters.acuse_cove_descargado);
|
||||||
}
|
if (filters.date_from) params.append('created_at__gte', filters.date_from);
|
||||||
if (filters.cove_descargado !== undefined && filters.cove_descargado !== '') {
|
if (filters.date_to) params.append('created_at__lte', filters.date_to);
|
||||||
params.append('cove_descargado', filters.cove_descargado);
|
|
||||||
}
|
|
||||||
if (filters.acuse_cove_descargado !== undefined && filters.acuse_cove_descargado !== '') {
|
|
||||||
params.append('acuse_cove_descargado', filters.acuse_cove_descargado);
|
|
||||||
}
|
|
||||||
if (filters.date_from) {
|
|
||||||
params.append('created_at__gte', filters.date_from);
|
|
||||||
}
|
|
||||||
if (filters.date_to) {
|
|
||||||
params.append('created_at__lte', filters.date_to);
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/coves/?${params}`);
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/coves/?${params}`);
|
||||||
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
return {
|
return { results: data.results, count: data.count, next: data.next, previous: data.previous };
|
||||||
results: data.results,
|
|
||||||
count: data.count,
|
|
||||||
next: data.next,
|
|
||||||
previous: data.previous
|
|
||||||
};
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error fetching COVEs:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const downloadCove = async (coveId) => {
|
export const downloadCove = async (coveId) => {
|
||||||
try {
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/coves/${coveId}/download/`);
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/coves/${coveId}/download/`);
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const blob = await response.blob();
|
const blob = await response.blob();
|
||||||
const url = window.URL.createObjectURL(blob);
|
const url = window.URL.createObjectURL(blob);
|
||||||
const a = document.createElement('a');
|
const a = document.createElement('a');
|
||||||
a.style.display = 'none';
|
a.style.display = 'none';
|
||||||
a.href = url;
|
a.href = url;
|
||||||
a.download = `COVE_${coveId}.pdf`;
|
a.download = `COVE_${coveId}.pdf`;
|
||||||
document.body.appendChild(a);
|
document.body.appendChild(a);
|
||||||
a.click();
|
a.click();
|
||||||
window.URL.revokeObjectURL(url);
|
window.URL.revokeObjectURL(url);
|
||||||
document.body.removeChild(a);
|
document.body.removeChild(a);
|
||||||
} catch (error) {
|
|
||||||
console.error('Error downloading COVE:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const downloadAcuseCove = async (coveId) => {
|
export const downloadAcuseCove = async (coveId) => {
|
||||||
try {
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/coves/${coveId}/download-acuse/`);
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/coves/${coveId}/download-acuse/`);
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const blob = await response.blob();
|
const blob = await response.blob();
|
||||||
const url = window.URL.createObjectURL(blob);
|
const url = window.URL.createObjectURL(blob);
|
||||||
const a = document.createElement('a');
|
const a = document.createElement('a');
|
||||||
a.style.display = 'none';
|
a.style.display = 'none';
|
||||||
a.href = url;
|
a.href = url;
|
||||||
a.download = `ACUSE_COVE_${coveId}.pdf`;
|
a.download = `ACUSE_COVE_${coveId}.pdf`;
|
||||||
document.body.appendChild(a);
|
document.body.appendChild(a);
|
||||||
a.click();
|
a.click();
|
||||||
window.URL.revokeObjectURL(url);
|
window.URL.revokeObjectURL(url);
|
||||||
document.body.removeChild(a);
|
document.body.removeChild(a);
|
||||||
} catch (error) {
|
};
|
||||||
console.error('Error downloading COVE acuse:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -1,44 +1,42 @@
|
|||||||
// Consultar el estado de un task por task_id
|
import { getWithAuth, postWithAuth, patchWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
|
const API_BASE = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/`;
|
||||||
|
|
||||||
export async function fetchTaskStatus(task_id) {
|
export async function fetchTaskStatus(task_id) {
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/task-status/?task_id=${encodeURIComponent(task_id)}`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/task-status/?task_id=${encodeURIComponent(task_id)}`;
|
||||||
const res = await getWithAuth(url);
|
const res = await getWithAuth(url);
|
||||||
if (!res.ok) throw new Error('Error al consultar el estado del task');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return res.json();
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
import.meta.env;
|
|
||||||
import { getWithAuth, postWithAuth, patchWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
|
||||||
const API_BASE = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/`;
|
|
||||||
|
|
||||||
export async function fetchDatastages(page = 1, page_size = 10) {
|
export async function fetchDatastages(page = 1, page_size = 10) {
|
||||||
const url = `${API_BASE}?page=${page}&page_size=${page_size}`;
|
const url = `${API_BASE}?page=${page}&page_size=${page_size}`;
|
||||||
const res = await getWithAuth(url);
|
const res = await getWithAuth(url);
|
||||||
if (!res.ok) throw new Error('Error al obtener datastages');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
const data = await res.json();
|
return res.json();
|
||||||
// Si la respuesta es paginada, devolver el objeto completo
|
|
||||||
return data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function fetchDatastageDetail(id) {
|
export async function fetchDatastageDetail(id) {
|
||||||
const res = await getWithAuth(`${API_BASE}${id}/`);
|
const res = await getWithAuth(`${API_BASE}${id}/`);
|
||||||
if (!res.ok) throw new Error('Error al obtener detalle');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return res.json();
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function createDatastage(data) {
|
export async function createDatastage(data) {
|
||||||
const res = await postWithAuth(API_BASE, data);
|
const res = await postWithAuth(API_BASE, data);
|
||||||
if (!res.ok) throw new Error('Error al crear datastage');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return res.json();
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateDatastage(id, data) {
|
export async function updateDatastage(id, data) {
|
||||||
const res = await patchWithAuth(`${API_BASE}${id}/`, data);
|
const res = await patchWithAuth(`${API_BASE}${id}/`, data);
|
||||||
if (!res.ok) throw new Error('Error al actualizar datastage');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return res.json();
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function deleteDatastage(id) {
|
export async function deleteDatastage(id) {
|
||||||
const res = await deleteWithAuth(`${API_BASE}${id}/`);
|
const res = await deleteWithAuth(`${API_BASE}${id}/`);
|
||||||
if (!res.ok) throw new Error('Error al eliminar datastage');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
// src/api/pedimentoDocuments.ts
|
// src/api/pedimentoDocuments.ts
|
||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
export interface PedimentoDocument {
|
export interface PedimentoDocument {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -47,6 +48,6 @@ export async function fetchPedimentoDocuments(
|
|||||||
`${API_URL}/record/documents/?${params.toString()}`
|
`${API_URL}/record/documents/?${params.toString()}`
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!res.ok) throw new Error('No autorizado o error en la petición');
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return res.json();
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,74 +1,43 @@
|
|||||||
|
|
||||||
/**
|
|
||||||
* @typedef {Object} Document
|
|
||||||
* @property {string} id
|
|
||||||
* @property {string} organizacion
|
|
||||||
* @property {string} pedimento
|
|
||||||
* @property {string} archivo
|
|
||||||
* @property {number} document_type
|
|
||||||
* @property {number} size
|
|
||||||
* @property {string} extension
|
|
||||||
* @property {string} created_at
|
|
||||||
* @property {string} updated_at
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef {Object} DocumentsResponse
|
|
||||||
* @property {number} count
|
|
||||||
* @property {string|null} next
|
|
||||||
* @property {string|null} previous
|
|
||||||
* @property {Document[]} results
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { refreshToken } from './auth';
|
import { refreshToken } from './auth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
/**
|
|
||||||
* Obtiene la lista de documentos (pedimentos)
|
|
||||||
* @param {string} token
|
|
||||||
* @returns {Promise<DocumentsResponse>}
|
|
||||||
*/
|
|
||||||
export async function fetchDocuments(token, queryString = '') {
|
export async function fetchDocuments(token, queryString = '') {
|
||||||
let url = `${API_URL}/customs/pedimentos/`;
|
let url = `${API_URL}/customs/pedimentos/`;
|
||||||
if (queryString) {
|
if (queryString) url += `?${queryString}`;
|
||||||
url += `?${queryString}`;
|
|
||||||
}
|
|
||||||
let res = await fetch(url, {
|
let res = await fetch(url, {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${token}`,
|
'Authorization': `Bearer ${token}`,
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.status === 401) {
|
if (res.status === 401) {
|
||||||
// Intentar refrescar el token
|
|
||||||
const refresh = localStorage.getItem('refresh');
|
const refresh = localStorage.getItem('refresh');
|
||||||
if (refresh) {
|
if (refresh) {
|
||||||
try {
|
try {
|
||||||
const data = await refreshToken(refresh);
|
const data = await refreshToken(refresh);
|
||||||
localStorage.setItem('access', data.access);
|
localStorage.setItem('access', data.access);
|
||||||
// Reintenta la petición con el nuevo access token
|
|
||||||
res = await fetch(`${API_URL}/customs/pedimentos/`, {
|
res = await fetch(`${API_URL}/customs/pedimentos/`, {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${data.access}`,
|
'Authorization': `Bearer ${data.access}`,
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch {
|
||||||
throw new Error('SESSION_EXPIRED');
|
throw new Error('SESSION_EXPIRED');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new Error('SESSION_EXPIRED');
|
throw new Error('SESSION_EXPIRED');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!res.ok) throw new Error('No autorizado o error en la petición');
|
|
||||||
return res.json(); // Tipado por JSDoc: Promise<DocumentsResponse>
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
|
return res.json();
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* Obtiene los documentos por id de pedimento
|
|
||||||
* @param {string} token
|
|
||||||
* @param {string} id
|
|
||||||
* @returns {Promise<DocumentsResponse>}
|
|
||||||
*/
|
|
||||||
export async function fetchDocumentById(token, id) {
|
export async function fetchDocumentById(token, id) {
|
||||||
let res = await fetch(`${API_URL}/record/documents/?page=1&page_size=10&pedimento=${id}/`, {
|
let res = await fetch(`${API_URL}/record/documents/?page=1&page_size=10&pedimento=${id}/`, {
|
||||||
headers: {
|
headers: {
|
||||||
@@ -76,27 +45,27 @@ export async function fetchDocumentById(token, id) {
|
|||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.status === 401) {
|
if (res.status === 401) {
|
||||||
// Intentar refrescar el token
|
|
||||||
const refresh = localStorage.getItem('refresh');
|
const refresh = localStorage.getItem('refresh');
|
||||||
if (refresh) {
|
if (refresh) {
|
||||||
try {
|
try {
|
||||||
const data = await refreshToken(refresh);
|
const data = await refreshToken(refresh);
|
||||||
localStorage.setItem('access', data.access);
|
localStorage.setItem('access', data.access);
|
||||||
// Reintenta la petición con el nuevo access token
|
|
||||||
res = await fetch(`${API_URL}/record/documents/?page=1&page_size=10&pedimento=${id}/`, {
|
res = await fetch(`${API_URL}/record/documents/?page=1&page_size=10&pedimento=${id}/`, {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${data.access}`,
|
'Authorization': `Bearer ${data.access}`,
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch {
|
||||||
throw new Error('SESSION_EXPIRED');
|
throw new Error('SESSION_EXPIRED');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new Error('SESSION_EXPIRED');
|
throw new Error('SESSION_EXPIRED');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!res.ok) throw new Error('No autorizado o error en la petición');
|
|
||||||
return res.json(); // Tipado por JSDoc: Promise<DocumentsResponse>
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,101 +1,58 @@
|
|||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
export const fetchPedimentoEdocuments = async (pedimentoId, page = 1, pageSize = 10, filters = {}) => {
|
export const fetchPedimentoEdocuments = async (pedimentoId, page = 1, pageSize = 10, filters = {}) => {
|
||||||
try {
|
const params = new URLSearchParams({
|
||||||
const params = new URLSearchParams({
|
pedimento: pedimentoId,
|
||||||
pedimento: pedimentoId,
|
page: page.toString(),
|
||||||
page: page.toString(),
|
page_size: pageSize.toString(),
|
||||||
page_size: pageSize.toString(),
|
});
|
||||||
});
|
|
||||||
|
|
||||||
// Agregar filtros si existen
|
if (filters.numero_edocument) params.append('numero_edocument__icontains', filters.numero_edocument);
|
||||||
if (filters.numero_edocument) {
|
if (filters.clave) params.append('clave__icontains', filters.clave);
|
||||||
params.append('numero_edocument__icontains', filters.numero_edocument);
|
if (filters.descripcion) params.append('descripcion__icontains', filters.descripcion);
|
||||||
}
|
if (filters.edocument_descargado !== undefined && filters.edocument_descargado !== '') params.append('edocument_descargado', filters.edocument_descargado);
|
||||||
if (filters.clave) {
|
if (filters.acuse_descargado !== undefined && filters.acuse_descargado !== '') params.append('acuse_descargado', filters.acuse_descargado);
|
||||||
params.append('clave__icontains', filters.clave);
|
if (filters.date_from) params.append('created_at__gte', filters.date_from);
|
||||||
}
|
if (filters.date_to) params.append('created_at__lte', filters.date_to);
|
||||||
if (filters.descripcion) {
|
|
||||||
params.append('descripcion__icontains', filters.descripcion);
|
|
||||||
}
|
|
||||||
if (filters.edocument_descargado !== undefined && filters.edocument_descargado !== '') {
|
|
||||||
params.append('edocument_descargado', filters.edocument_descargado);
|
|
||||||
}
|
|
||||||
if (filters.acuse_descargado !== undefined && filters.acuse_descargado !== '') {
|
|
||||||
params.append('acuse_descargado', filters.acuse_descargado);
|
|
||||||
}
|
|
||||||
if (filters.date_from) {
|
|
||||||
params.append('created_at__gte', filters.date_from);
|
|
||||||
}
|
|
||||||
if (filters.date_to) {
|
|
||||||
params.append('created_at__lte', filters.date_to);
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/edocuments/?${params}`);
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/edocuments/?${params}`);
|
||||||
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
return {
|
return { results: data.results, count: data.count, next: data.next, previous: data.previous };
|
||||||
results: data.results,
|
|
||||||
count: data.count,
|
|
||||||
next: data.next,
|
|
||||||
previous: data.previous
|
|
||||||
};
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error fetching EDocs:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const downloadEdocument = async (edocId) => {
|
export const downloadEdocument = async (edocId) => {
|
||||||
try {
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/edocuments/${edocId}/download/`);
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/edocuments/${edocId}/download/`);
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const blob = await response.blob();
|
const blob = await response.blob();
|
||||||
const url = window.URL.createObjectURL(blob);
|
const url = window.URL.createObjectURL(blob);
|
||||||
const a = document.createElement('a');
|
const a = document.createElement('a');
|
||||||
a.style.display = 'none';
|
a.style.display = 'none';
|
||||||
a.href = url;
|
a.href = url;
|
||||||
a.download = `EDOC_${edocId}.pdf`;
|
a.download = `EDOC_${edocId}.pdf`;
|
||||||
document.body.appendChild(a);
|
document.body.appendChild(a);
|
||||||
a.click();
|
a.click();
|
||||||
window.URL.revokeObjectURL(url);
|
window.URL.revokeObjectURL(url);
|
||||||
document.body.removeChild(a);
|
document.body.removeChild(a);
|
||||||
} catch (error) {
|
|
||||||
console.error('Error downloading EDocs:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const downloadAcuseEdocument = async (edocId) => {
|
export const downloadAcuseEdocument = async (edocId) => {
|
||||||
try {
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/edocuments/${edocId}/download-acuse/`);
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/edocuments/${edocId}/download-acuse/`);
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const blob = await response.blob();
|
const blob = await response.blob();
|
||||||
const url = window.URL.createObjectURL(blob);
|
const url = window.URL.createObjectURL(blob);
|
||||||
const a = document.createElement('a');
|
const a = document.createElement('a');
|
||||||
a.style.display = 'none';
|
a.style.display = 'none';
|
||||||
a.href = url;
|
a.href = url;
|
||||||
a.download = `ACUSE_EDOC_${edocId}.pdf`;
|
a.download = `ACUSE_EDOC_${edocId}.pdf`;
|
||||||
document.body.appendChild(a);
|
document.body.appendChild(a);
|
||||||
a.click();
|
a.click();
|
||||||
window.URL.revokeObjectURL(url);
|
window.URL.revokeObjectURL(url);
|
||||||
document.body.removeChild(a);
|
document.body.removeChild(a);
|
||||||
} catch (error) {
|
};
|
||||||
console.error('Error downloading EDocs acuse:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -33,9 +33,9 @@ export interface PedimentosFilters {
|
|||||||
aduana?: string;
|
aduana?: string;
|
||||||
regimen?: string;
|
regimen?: string;
|
||||||
clave_pedimento?: string;
|
clave_pedimento?: string;
|
||||||
fecha_inicio?: string;
|
|
||||||
fecha_fin?: string;
|
|
||||||
fecha_pago?: string;
|
fecha_pago?: string;
|
||||||
|
fecha_pago_desde?: string;
|
||||||
|
fecha_pago_hasta?: string;
|
||||||
alerta?: string | boolean;
|
alerta?: string | boolean;
|
||||||
agente_aduanal?: string;
|
agente_aduanal?: string;
|
||||||
curp_apoderado?: string;
|
curp_apoderado?: string;
|
||||||
@@ -53,6 +53,7 @@ export interface PedimentosFilters {
|
|||||||
contribuyente?: string;
|
contribuyente?: string;
|
||||||
numero_edocs?: number;
|
numero_edocs?: number;
|
||||||
numero_coves?: number;
|
numero_coves?: number;
|
||||||
|
ordering?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function fetchDocuments(
|
export async function fetchDocuments(
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { refreshToken } from './auth';
|
import { refreshToken } from './auth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
@@ -9,14 +10,13 @@ export async function fetchOrganizationUsage(token) {
|
|||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.status === 401) {
|
if (res.status === 401) {
|
||||||
// Intentar refrescar el token
|
|
||||||
const refresh = localStorage.getItem('refresh');
|
const refresh = localStorage.getItem('refresh');
|
||||||
if (refresh) {
|
if (refresh) {
|
||||||
try {
|
try {
|
||||||
const data = await refreshToken(refresh);
|
const data = await refreshToken(refresh);
|
||||||
localStorage.setItem('access', data.access);
|
localStorage.setItem('access', data.access);
|
||||||
// Reintenta la petición con el nuevo access token
|
|
||||||
res = await fetch(`${API_URL}/organization/uso-almacenamiento/mi_organizacion/`, {
|
res = await fetch(`${API_URL}/organization/uso-almacenamiento/mi_organizacion/`, {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${data.access}`,
|
'Authorization': `Bearer ${data.access}`,
|
||||||
@@ -24,13 +24,14 @@ export async function fetchOrganizationUsage(token) {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
if (res.status === 401) throw new Error('SESSION_EXPIRED');
|
if (res.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
} catch (err) {
|
} catch {
|
||||||
throw new Error('SESSION_EXPIRED');
|
throw new Error('SESSION_EXPIRED');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new Error('SESSION_EXPIRED');
|
throw new Error('SESSION_EXPIRED');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!res.ok) throw new Error('No autorizado o error en la petición');
|
|
||||||
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
return res.json();
|
return res.json();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,66 +1,32 @@
|
|||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
export const fetchPedimentoProcesos = async (pedimentoId, page = 1, pageSize = 10, filters = {}) => {
|
export const fetchPedimentoProcesos = async (pedimentoId, page = 1, pageSize = 10, filters = {}) => {
|
||||||
try {
|
const params = new URLSearchParams({
|
||||||
const params = new URLSearchParams({
|
pedimento: pedimentoId,
|
||||||
pedimento: pedimentoId,
|
page: page.toString(),
|
||||||
page: page.toString(),
|
page_size: pageSize.toString(),
|
||||||
page_size: pageSize.toString(),
|
});
|
||||||
});
|
|
||||||
|
|
||||||
// Agregar filtros si existen
|
if (filters.estado !== undefined && filters.estado !== '') params.append('estado', filters.estado);
|
||||||
if (filters.estado !== undefined && filters.estado !== '') {
|
if (filters.servicio !== undefined && filters.servicio !== '') params.append('servicio', filters.servicio);
|
||||||
params.append('estado', filters.estado);
|
if (filters.organizacion_name) params.append('organizacion_name__icontains', filters.organizacion_name);
|
||||||
}
|
if (filters.date_from) params.append('created_at__gte', filters.date_from);
|
||||||
if (filters.servicio !== undefined && filters.servicio !== '') {
|
if (filters.date_to) params.append('created_at__lte', filters.date_to);
|
||||||
params.append('servicio', filters.servicio);
|
if (filters.updated_from) params.append('updated_at__gte', filters.updated_from);
|
||||||
}
|
if (filters.updated_to) params.append('updated_at__lte', filters.updated_to);
|
||||||
if (filters.organizacion_name) {
|
|
||||||
params.append('organizacion_name__icontains', filters.organizacion_name);
|
|
||||||
}
|
|
||||||
if (filters.date_from) {
|
|
||||||
params.append('created_at__gte', filters.date_from);
|
|
||||||
}
|
|
||||||
if (filters.date_to) {
|
|
||||||
params.append('created_at__lte', filters.date_to);
|
|
||||||
}
|
|
||||||
if (filters.updated_from) {
|
|
||||||
params.append('updated_at__gte', filters.updated_from);
|
|
||||||
}
|
|
||||||
if (filters.updated_to) {
|
|
||||||
params.append('updated_at__lte', filters.updated_to);
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await fetchWithAuth(`${API_BASE_URL}/customs/procesamientopedimentos/?${params}`);
|
const response = await fetchWithAuth(`${API_BASE_URL}/customs/procesamientopedimentos/?${params}`);
|
||||||
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
return {
|
return { results: data.results, count: data.count, next: data.next, previous: data.previous };
|
||||||
results: data.results,
|
|
||||||
count: data.count,
|
|
||||||
next: data.next,
|
|
||||||
previous: data.previous
|
|
||||||
};
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error fetching Procesos:', error);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Mapeo de estados
|
|
||||||
export const getEstadoLabel = (estado) => {
|
export const getEstadoLabel = (estado) => {
|
||||||
const estados = {
|
const estados = { 1: 'Pendiente', 2: 'En Proceso', 3: 'Completado', 4: 'Error', 5: 'Cancelado' };
|
||||||
1: 'Pendiente',
|
|
||||||
2: 'En Proceso',
|
|
||||||
3: 'Completado',
|
|
||||||
4: 'Error',
|
|
||||||
5: 'Cancelado'
|
|
||||||
};
|
|
||||||
return estados[estado] || `Estado ${estado}`;
|
return estados[estado] || `Estado ${estado}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -70,38 +36,27 @@ export const getEstadoColor = (estado) => {
|
|||||||
2: 'bg-blue-100 text-blue-800',
|
2: 'bg-blue-100 text-blue-800',
|
||||||
3: 'bg-green-100 text-green-800',
|
3: 'bg-green-100 text-green-800',
|
||||||
4: 'bg-red-100 text-red-800',
|
4: 'bg-red-100 text-red-800',
|
||||||
5: 'bg-gray-100 text-gray-800'
|
5: 'bg-gray-100 text-gray-800',
|
||||||
};
|
};
|
||||||
return colores[estado] || 'bg-gray-100 text-gray-800';
|
return colores[estado] || 'bg-gray-100 text-gray-800';
|
||||||
};
|
};
|
||||||
|
|
||||||
// Mapeo de servicios
|
|
||||||
export const getServicioLabel = (servicio) => {
|
export const getServicioLabel = (servicio) => {
|
||||||
const servicios = {
|
const servicios = {
|
||||||
1: 'Digitalización',
|
1: 'Digitalización', 2: 'Validación', 3: 'Procesamiento SAT',
|
||||||
2: 'Validación',
|
4: 'Generación COVEs', 5: 'Generación EDocs', 6: 'Envío VUCEM',
|
||||||
3: 'Procesamiento SAT',
|
7: 'Clasificación', 8: 'Archivo Digital', 9: 'Notificaciones',
|
||||||
4: 'Generación COVEs',
|
|
||||||
5: 'Generación EDocs',
|
|
||||||
6: 'Envío VUCEM',
|
|
||||||
7: 'Clasificación',
|
|
||||||
8: 'Archivo Digital',
|
|
||||||
9: 'Notificaciones'
|
|
||||||
};
|
};
|
||||||
return servicios[servicio] || `Servicio ${servicio}`;
|
return servicios[servicio] || `Servicio ${servicio}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getServicioColor = (servicio) => {
|
export const getServicioColor = (servicio) => {
|
||||||
const colores = {
|
const colores = {
|
||||||
1: 'bg-purple-100 text-purple-800',
|
1: 'bg-purple-100 text-purple-800', 2: 'bg-indigo-100 text-indigo-800',
|
||||||
2: 'bg-indigo-100 text-indigo-800',
|
3: 'bg-blue-100 text-blue-800', 4: 'bg-cyan-100 text-cyan-800',
|
||||||
3: 'bg-blue-100 text-blue-800',
|
5: 'bg-teal-100 text-teal-800', 6: 'bg-green-100 text-green-800',
|
||||||
4: 'bg-cyan-100 text-cyan-800',
|
7: 'bg-yellow-100 text-yellow-800', 8: 'bg-orange-100 text-orange-800',
|
||||||
5: 'bg-teal-100 text-teal-800',
|
9: 'bg-pink-100 text-pink-800',
|
||||||
6: 'bg-green-100 text-green-800',
|
|
||||||
7: 'bg-yellow-100 text-yellow-800',
|
|
||||||
8: 'bg-orange-100 text-orange-800',
|
|
||||||
9: 'bg-pink-100 text-pink-800'
|
|
||||||
};
|
};
|
||||||
return colores[servicio] || 'bg-gray-100 text-gray-800';
|
return colores[servicio] || 'bg-gray-100 text-gray-800';
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth, postWithAuth } from '../fetchWithAuth';
|
||||||
|
|
||||||
// Tipos para la respuesta y registros
|
// Tipos para la respuesta y registros
|
||||||
export interface Task {
|
export interface Task {
|
||||||
@@ -39,6 +39,7 @@ export async function fetchTasks(
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
console.log('Params:', params.toString());
|
||||||
const res = await fetchWithAuth(`${API_URL}/tasks/tasks/?${params.toString()}`);
|
const res = await fetchWithAuth(`${API_URL}/tasks/tasks/?${params.toString()}`);
|
||||||
|
|
||||||
if (!res.ok) {
|
if (!res.ok) {
|
||||||
@@ -51,3 +52,66 @@ export async function fetchTasks(
|
|||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Interfaz para la respuesta del comando
|
||||||
|
export interface ComandoResponse {
|
||||||
|
message?: string;
|
||||||
|
error?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Interfaz para los parámetros de ejecución
|
||||||
|
export interface EjecutarComandoParams {
|
||||||
|
procesamiento?: string;
|
||||||
|
organizacionid?: string;
|
||||||
|
todos?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
// API para ejecutar comando de procesamiento
|
||||||
|
export async function ejecutarComando(
|
||||||
|
params: EjecutarComandoParams
|
||||||
|
): Promise<ComandoResponse> {
|
||||||
|
try {
|
||||||
|
const API_URL = (import.meta as any).env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
|
console.log('API_URL:', API_URL);
|
||||||
|
// Preparar los datos para la petición POST
|
||||||
|
const requestData: any = {};
|
||||||
|
|
||||||
|
if (params.procesamiento !== undefined) {
|
||||||
|
requestData.procesamiento = params.procesamiento;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (params.organizacionid !== undefined) {
|
||||||
|
requestData.organizacionid = params.organizacionid;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (params.todos !== undefined) {
|
||||||
|
requestData.todos = params.todos;
|
||||||
|
}
|
||||||
|
|
||||||
|
// const res = await fetchWithAuth(`${API_URL}/customs/procesamientopedimentos-ejecutar-comando/`, {
|
||||||
|
// method: 'POST',
|
||||||
|
// headers: {
|
||||||
|
// 'Content-Type': 'application/json',
|
||||||
|
// },
|
||||||
|
// body: JSON.stringify(requestData),
|
||||||
|
// });
|
||||||
|
|
||||||
|
const res = await postWithAuth(`${API_URL}/customs/procesamientopedimentos-ejecutar-comando/`, requestData);
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
// Intentar obtener el mensaje de error del servidor
|
||||||
|
try {
|
||||||
|
const errorData = await res.json();
|
||||||
|
throw new Error(errorData.message || errorData.error || `Error ${res.status}: ${res.statusText}`);
|
||||||
|
} catch {
|
||||||
|
throw new Error(`Error ${res.status}: ${res.statusText}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return await res.json();
|
||||||
|
} catch (error) {
|
||||||
|
// console.error('Error in ejecutarComando:', error);
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
153
src/api/rbac.js
Normal file
153
src/api/rbac.js
Normal file
@@ -0,0 +1,153 @@
|
|||||||
|
const API_URL = import.meta.env.VITE_EFC_API_URL || 'http://localhost:8000';
|
||||||
|
import { fetchWithAuth, postWithAuth, patchWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
||||||
|
|
||||||
|
async function handleResponse(response, operation = 'operación') {
|
||||||
|
if (response.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
|
if (!response.ok) {
|
||||||
|
let detail = `Error ${response.status}`;
|
||||||
|
try {
|
||||||
|
const body = await response.json();
|
||||||
|
detail = body.detail || body.message || JSON.stringify(body);
|
||||||
|
} catch {
|
||||||
|
detail = await response.text().catch(() => detail);
|
||||||
|
}
|
||||||
|
throw new Error(detail);
|
||||||
|
}
|
||||||
|
const contentType = response.headers.get('content-type');
|
||||||
|
if (!contentType?.includes('application/json')) return null;
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Catálogo de permisos ─────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
/** Array plano: [{ id, codename, descripcion, modulo }] */
|
||||||
|
export async function fetchPermissions() {
|
||||||
|
const res = await fetchWithAuth(`${API_URL}/rbac/permissions/`);
|
||||||
|
return handleResponse(res, 'Fetch Permissions');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Agrupado por módulo: { cards: [...], coves: [...], ... } */
|
||||||
|
export async function fetchPermissionsByModule() {
|
||||||
|
const res = await fetchWithAuth(`${API_URL}/rbac/permissions/by-module/`);
|
||||||
|
return handleResponse(res, 'Fetch Permissions By Module');
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Permisos efectivos del usuario actual ────────────────────────────────────
|
||||||
|
|
||||||
|
/** { permissions: ["cards.view", ...], roles: ["admin"] } */
|
||||||
|
export async function fetchMyPermissions() {
|
||||||
|
const res = await fetchWithAuth(`${API_URL}/rbac/my-permissions/`);
|
||||||
|
return handleResponse(res, 'Fetch My Permissions');
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Roles (OrganizationRole) ─────────────────────────────────────────────────
|
||||||
|
|
||||||
|
export async function fetchRoles() {
|
||||||
|
const res = await fetchWithAuth(`${API_URL}/rbac/roles/`);
|
||||||
|
return handleResponse(res, 'Fetch Roles');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* data: { nombre, descripcion?, permission_ids: number[] }
|
||||||
|
* permission_ids son IDs numéricos de RolePermission.
|
||||||
|
*/
|
||||||
|
export async function createRole(data) {
|
||||||
|
const res = await postWithAuth(`${API_URL}/rbac/roles/`, data);
|
||||||
|
return handleResponse(res, 'Create Role');
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getRole(id) {
|
||||||
|
const res = await fetchWithAuth(`${API_URL}/rbac/roles/${id}/`);
|
||||||
|
return handleResponse(res, 'Get Role');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PATCH — reemplaza el rol completo.
|
||||||
|
* data: { nombre?, descripcion?, permission_ids?: number[] }
|
||||||
|
*/
|
||||||
|
export async function updateRole(id, data) {
|
||||||
|
const res = await patchWithAuth(`${API_URL}/rbac/roles/${id}/`, data);
|
||||||
|
return handleResponse(res, 'Update Role');
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function deleteRole(id) {
|
||||||
|
const res = await deleteWithAuth(`${API_URL}/rbac/roles/${id}/`);
|
||||||
|
if (res.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
|
if (!res.ok) {
|
||||||
|
let detail = `Error ${res.status}`;
|
||||||
|
try { detail = (await res.json()).detail || detail; } catch {}
|
||||||
|
throw new Error(detail);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Asignación de roles a usuarios (UserRole) ────────────────────────────────
|
||||||
|
|
||||||
|
/**
|
||||||
|
* userId: filtra por usuario. Usa ?user_id= según spec.
|
||||||
|
* Respuesta: [{ id, user: {...}, role: {...}, created_at }]
|
||||||
|
*/
|
||||||
|
export async function fetchUserRoles(userId) {
|
||||||
|
const url = userId
|
||||||
|
? `${API_URL}/rbac/user-roles/?user_id=${userId}`
|
||||||
|
: `${API_URL}/rbac/user-roles/`;
|
||||||
|
const res = await fetchWithAuth(url);
|
||||||
|
return handleResponse(res, 'Fetch User Roles');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* body: { user_id, role_id } — UUIDs según spec del backend.
|
||||||
|
*/
|
||||||
|
export async function assignUserRole(userId, roleId) {
|
||||||
|
const res = await postWithAuth(`${API_URL}/rbac/user-roles/`, {
|
||||||
|
user_id: userId,
|
||||||
|
role_id: roleId,
|
||||||
|
});
|
||||||
|
return handleResponse(res, 'Assign Role');
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function revokeUserRole(userRoleId) {
|
||||||
|
const res = await deleteWithAuth(`${API_URL}/rbac/user-roles/${userRoleId}/`);
|
||||||
|
if (res.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
|
if (!res.ok) {
|
||||||
|
let detail = `Error ${res.status}`;
|
||||||
|
try { detail = (await res.json()).detail || detail; } catch {}
|
||||||
|
throw new Error(detail);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Switch de organización (solo SuperUser) ───────────────────────────────────
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Establece la organización activa del superuser.
|
||||||
|
* body: { organization_id: "uuid" }
|
||||||
|
*/
|
||||||
|
export async function switchOrganization(organizationId) {
|
||||||
|
const res = await postWithAuth(`${API_URL}/rbac/switch-organization/`, {
|
||||||
|
organization_id: organizationId,
|
||||||
|
});
|
||||||
|
return handleResponse(res, 'Switch Organization');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Limpia la organización activa del superuser. */
|
||||||
|
export async function clearOrganization() {
|
||||||
|
const res = await deleteWithAuth(`${API_URL}/rbac/switch-organization/`);
|
||||||
|
if (res.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
|
if (!res.ok) {
|
||||||
|
let detail = `Error ${res.status}`;
|
||||||
|
try { detail = (await res.json()).detail || detail; } catch {}
|
||||||
|
throw new Error(detail);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Permisos singulares por usuario (UserPermission) ─────────────────────────
|
||||||
|
|
||||||
|
export async function fetchUserPermissions(userId) {
|
||||||
|
const url = userId
|
||||||
|
? `${API_URL}/rbac/user-permissions/?user_id=${userId}`
|
||||||
|
: `${API_URL}/rbac/user-permissions/`;
|
||||||
|
const res = await fetchWithAuth(url);
|
||||||
|
return handleResponse(res, 'Fetch User Permissions');
|
||||||
|
}
|
||||||
@@ -1,56 +1,42 @@
|
|||||||
const API_URL = import.meta.env.VITE_EFC_API_URL || 'http://localhost:8000';
|
const API_URL = import.meta.env.VITE_EFC_API_URL || 'http://localhost:8000';
|
||||||
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
// Función helper para manejar respuestas
|
async function handleResponse(response) {
|
||||||
|
if (response.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
async function handleResponse(response, operation = 'operación') {
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
if (response.status === 401) {
|
|
||||||
throw new Error('SESSION_EXPIRED');
|
|
||||||
}
|
|
||||||
if (!response.ok) {
|
|
||||||
const errorText = await response.text();
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
const contentType = response.headers.get('content-type');
|
const contentType = response.headers.get('content-type');
|
||||||
if (!contentType || !contentType.includes('application/json')) {
|
if (!contentType || !contentType.includes('application/json')) return null;
|
||||||
throw new Error('El servidor no devolvió JSON válido');
|
|
||||||
}
|
|
||||||
return response.json();
|
return response.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function fetchUsers() {
|
export async function fetchUsers() {
|
||||||
const url = `${API_URL}/user/users/`;
|
const res = await fetchWithAuth(`${API_URL}/user/users/`);
|
||||||
const res = await fetchWithAuth(url);
|
return handleResponse(res);
|
||||||
return handleResponse(res, 'Fetch Users');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function createUser(userData) {
|
export async function createUser(userData) {
|
||||||
const url = `${API_URL}/user/users/`;
|
const res = await postWithAuth(`${API_URL}/user/users/`, userData);
|
||||||
const res = await postWithAuth(url, userData);
|
return handleResponse(res);
|
||||||
return handleResponse(res, 'Create User');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateUser(id, userData) {
|
export async function updateUser(id, userData) {
|
||||||
const url = `${API_URL}/user/users/${id}/`;
|
const res = await putWithAuth(`${API_URL}/user/users/${id}/`, userData);
|
||||||
const res = await putWithAuth(url, userData);
|
return handleResponse(res);
|
||||||
return handleResponse(res, 'Update User');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function deleteUser(id) {
|
export async function deleteUser(id) {
|
||||||
const url = `${API_URL}/user/users/${id}/`;
|
const res = await deleteWithAuth(`${API_URL}/user/users/${id}/`);
|
||||||
const res = await deleteWithAuth(url);
|
return handleResponse(res);
|
||||||
if (!res.ok) throw new Error(`Error ${res.status}: ${res.statusText}`);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCurrentUser(token) {
|
export async function getCurrentUser(token) {
|
||||||
const url = `${API_URL}/user/users/me/`;
|
const res = await fetch(`${API_URL}/user/users/me/`, {
|
||||||
const res = await fetch(url, {
|
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${token}`,
|
'Authorization': `Bearer ${token}`,
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'Accept': 'application/json',
|
'Accept': 'application/json',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return handleResponse(res, 'Get Current User');
|
return handleResponse(res);
|
||||||
}
|
}
|
||||||
|
|||||||
141
src/api/users.ts
141
src/api/users.ts
@@ -1,138 +1,39 @@
|
|||||||
|
/// <reference types="vite/client" />
|
||||||
const API_URL = import.meta.env.VITE_EFC_API_URL || 'http://localhost:8000';
|
const API_URL = import.meta.env.VITE_EFC_API_URL || 'http://localhost:8000';
|
||||||
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from './apiError';
|
||||||
|
|
||||||
// Función helper para manejar respuestas
|
async function handleResponse(response: Response) {
|
||||||
async function handleResponse(response, operation = 'operación') {
|
if (response.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
console.log(`📡 ${operation} response:`, response.status, response.statusText);
|
if (!response.ok) throw new Error(await extractApiError(response));
|
||||||
|
|
||||||
if (response.status === 401) {
|
|
||||||
console.error('❌ Unauthorized - session expired');
|
|
||||||
throw new Error('SESSION_EXPIRED');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
const errorText = await response.text();
|
|
||||||
console.error(`❌ ${operation} error:`, response.status, errorText);
|
|
||||||
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Verificar que la respuesta es JSON
|
|
||||||
const contentType = response.headers.get('content-type');
|
const contentType = response.headers.get('content-type');
|
||||||
if (!contentType || !contentType.includes('application/json')) {
|
if (!contentType?.includes('application/json')) return null;
|
||||||
const text = await response.text();
|
|
||||||
console.error('❌ Response is not JSON:', text.substring(0, 200));
|
|
||||||
throw new Error('El servidor no devolvió JSON válido');
|
|
||||||
}
|
|
||||||
|
|
||||||
return response.json();
|
return response.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function fetchUsers() {
|
export async function fetchUsers() {
|
||||||
try {
|
const res = await fetchWithAuth(`${API_URL}/user/users/`);
|
||||||
const url = `${API_URL}/user/users/`;
|
return handleResponse(res);
|
||||||
console.log('👥 Fetching users from:', url);
|
|
||||||
|
|
||||||
const res = await fetchWithAuth(url);
|
|
||||||
|
|
||||||
const data = await handleResponse(res, 'Fetch Users');
|
|
||||||
console.log('✅ Users data received');
|
|
||||||
return data;
|
|
||||||
|
|
||||||
} catch (error) {
|
|
||||||
console.error('❌ Error in fetchUsers:', error);
|
|
||||||
if (error.name === 'TypeError' && error.message.includes('fetch')) {
|
|
||||||
throw new Error('Error de conexión al servidor');
|
|
||||||
}
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function createUser(userData) {
|
export async function createUser(userData: object) {
|
||||||
try {
|
const res = await postWithAuth(`${API_URL}/user/users/`, userData);
|
||||||
const url = `${API_URL}/user/users/`;
|
return handleResponse(res);
|
||||||
console.log('➕ Creating user at:', url);
|
|
||||||
|
|
||||||
const res = await postWithAuth(url, userData);
|
|
||||||
|
|
||||||
const data = await handleResponse(res, 'Create User');
|
|
||||||
console.log('✅ User created successfully');
|
|
||||||
return data;
|
|
||||||
|
|
||||||
} catch (error) {
|
|
||||||
console.error('❌ Error in createUser:', error);
|
|
||||||
if (error.name === 'TypeError' && error.message.includes('fetch')) {
|
|
||||||
throw new Error('Error de conexión al servidor');
|
|
||||||
}
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateUser(id, userData) {
|
export async function updateUser(id: string | number, userData: object) {
|
||||||
try {
|
const res = await putWithAuth(`${API_URL}/user/users/${id}/`, userData);
|
||||||
const url = `${API_URL}/user/users/${id}/`;
|
return handleResponse(res);
|
||||||
console.log('✏️ Updating user at:', url);
|
|
||||||
|
|
||||||
const res = await putWithAuth(url, userData);
|
|
||||||
|
|
||||||
const data = await handleResponse(res, 'Update User');
|
|
||||||
console.log('✅ User updated successfully');
|
|
||||||
return data;
|
|
||||||
|
|
||||||
} catch (error) {
|
|
||||||
console.error('❌ Error in updateUser:', error);
|
|
||||||
if (error.name === 'TypeError' && error.message.includes('fetch')) {
|
|
||||||
throw new Error('Error de conexión al servidor');
|
|
||||||
}
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function deleteUser(id) {
|
export async function deleteUser(id: string | number) {
|
||||||
try {
|
const res = await deleteWithAuth(`${API_URL}/user/users/${id}/`);
|
||||||
const url = `${API_URL}/user/users/${id}/`;
|
if (res.status === 401) throw new Error('SESSION_EXPIRED');
|
||||||
console.log('🗑️ Deleting user at:', url);
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
|
return true;
|
||||||
const res = await deleteWithAuth(url);
|
|
||||||
|
|
||||||
if (res.status === 401) {
|
|
||||||
console.error('❌ Unauthorized - session expired');
|
|
||||||
throw new Error('SESSION_EXPIRED');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!res.ok) {
|
|
||||||
const errorText = await res.text();
|
|
||||||
console.error('❌ Delete User error:', res.status, errorText);
|
|
||||||
throw new Error(`Error ${res.status}: ${res.statusText}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log('✅ User deleted successfully');
|
|
||||||
return true; // DELETE suele no devolver contenido
|
|
||||||
|
|
||||||
} catch (error) {
|
|
||||||
console.error('❌ Error in deleteUser:', error);
|
|
||||||
if (error.name === 'TypeError' && error.message.includes('fetch')) {
|
|
||||||
throw new Error('Error de conexión al servidor');
|
|
||||||
}
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCurrentUser() {
|
export async function getCurrentUser() {
|
||||||
try {
|
const res = await fetchWithAuth(`${API_URL}/user/users/me/`);
|
||||||
const url = `${API_URL}/user/users/me/`;
|
return handleResponse(res);
|
||||||
console.log('👤 Fetching current user from:', url);
|
|
||||||
|
|
||||||
const res = await fetchWithAuth(url);
|
|
||||||
|
|
||||||
const data = await handleResponse(res, 'Get Current User');
|
|
||||||
console.log('✅ Current user data received:', data);
|
|
||||||
return data;
|
|
||||||
|
|
||||||
} catch (error) {
|
|
||||||
console.error('❌ Error in getCurrentUser:', error);
|
|
||||||
if (error.name === 'TypeError' && error.message.includes('fetch')) {
|
|
||||||
throw new Error('Error de conexión al servidor');
|
|
||||||
}
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,21 @@
|
|||||||
import React, { useState, useEffect } from 'react';
|
import React, { useState, useEffect } from 'react';
|
||||||
import { Link, useLocation, useNavigate } from 'react-router-dom';
|
import { Link, useLocation, useNavigate } from 'react-router-dom';
|
||||||
import { useUser } from '../context/UserContext';
|
import { useUser } from '../context/UserContext';
|
||||||
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
|
||||||
export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
||||||
// Leer si el usuario es importador desde localStorage
|
|
||||||
const isImportador = typeof window !== 'undefined' && localStorage.getItem('user_is_importador') === 'true';
|
|
||||||
// Leer grupos del usuario desde localStorage
|
|
||||||
let userGroups = [];
|
|
||||||
if (typeof window !== 'undefined') {
|
|
||||||
try {
|
|
||||||
userGroups = JSON.parse(localStorage.getItem('user_groups') || '[]');
|
|
||||||
} catch {
|
|
||||||
userGroups = [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Si los grupos son exactamente [3,5]
|
|
||||||
const isGroup35 = Array.isArray(userGroups) && userGroups.length === 2 && userGroups.includes(3) && userGroups.includes(5);
|
|
||||||
// Leer DEBUG_MODE desde variables de entorno
|
|
||||||
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
||||||
|
|
||||||
|
// Permisos RBAC — cargados desde /rbac/my-permissions/ al hacer login
|
||||||
|
const [userPermissions, setUserPermissions] = useState(() => {
|
||||||
|
try {
|
||||||
|
return JSON.parse(localStorage.getItem('user_permissions') || '[]');
|
||||||
|
} catch {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const hasPermission = (codename) => userPermissions.includes(codename);
|
||||||
|
|
||||||
// Estados para responsividad
|
// Estados para responsividad
|
||||||
const [isCollapsed, setIsCollapsed] = useState(false);
|
const [isCollapsed, setIsCollapsed] = useState(false);
|
||||||
@@ -34,6 +32,14 @@ export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
|||||||
const handleLogout = () => {
|
const handleLogout = () => {
|
||||||
localStorage.removeItem('access');
|
localStorage.removeItem('access');
|
||||||
localStorage.removeItem('refresh');
|
localStorage.removeItem('refresh');
|
||||||
|
localStorage.removeItem('user_id');
|
||||||
|
localStorage.removeItem('user_is_importador');
|
||||||
|
localStorage.removeItem('user_groups');
|
||||||
|
localStorage.removeItem('user_permissions');
|
||||||
|
localStorage.removeItem('username');
|
||||||
|
localStorage.removeItem('user_email');
|
||||||
|
localStorage.removeItem('user_first_name');
|
||||||
|
localStorage.removeItem('user_last_name');
|
||||||
window.dispatchEvent(new CustomEvent('authStateChanged'));
|
window.dispatchEvent(new CustomEvent('authStateChanged'));
|
||||||
navigate('/login');
|
navigate('/login');
|
||||||
};
|
};
|
||||||
@@ -55,6 +61,22 @@ export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
|||||||
handleMobileClose();
|
handleMobileClose();
|
||||||
}, [location.pathname]);
|
}, [location.pathname]);
|
||||||
|
|
||||||
|
// Si no hay permisos en localStorage (sesión previa al RBAC), los carga del servidor
|
||||||
|
useEffect(() => {
|
||||||
|
if (userPermissions.length === 0 && localStorage.getItem('access')) {
|
||||||
|
const apiUrl = import.meta.env.VITE_EFC_API_URL || '';
|
||||||
|
fetchWithAuth(`${apiUrl}/rbac/my-permissions/`)
|
||||||
|
.then(res => res.ok ? res.json() : null)
|
||||||
|
.then(data => {
|
||||||
|
if (data && Array.isArray(data.permissions)) {
|
||||||
|
localStorage.setItem('user_permissions', JSON.stringify(data.permissions));
|
||||||
|
setUserPermissions(data.permissions);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
// El usuario y loading ahora vienen del contexto global
|
// El usuario y loading ahora vienen del contexto global
|
||||||
|
|
||||||
// Definir todas las secciones
|
// Definir todas las secciones
|
||||||
@@ -71,9 +93,8 @@ export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
|||||||
</svg>
|
</svg>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
// Ocultar 'Mi Organización' si es importador o si esGroup35
|
|
||||||
...(
|
...(
|
||||||
(!isImportador && !isGroup35)
|
hasPermission('organizacion.view')
|
||||||
? [
|
? [
|
||||||
{
|
{
|
||||||
name: 'Mi Organización',
|
name: 'Mi Organización',
|
||||||
@@ -101,15 +122,19 @@ export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
|||||||
</svg>
|
</svg>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
{
|
...(
|
||||||
name: 'Auditor',
|
hasPermission('auditoria.view')
|
||||||
path: '/auditor',
|
? [{
|
||||||
icon: (
|
name: 'Auditor',
|
||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
path: '/auditor',
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" />
|
icon: (
|
||||||
</svg>
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
)
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" />
|
||||||
}
|
</svg>
|
||||||
|
)
|
||||||
|
}]
|
||||||
|
: []
|
||||||
|
)
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -158,9 +183,9 @@ export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// Nueva sección Tableros - Solo mostrar si DEBUG_MODE es true
|
// Nueva sección Tableros - Solo mostrar si DEBUG_MODE es true y tiene cards.view
|
||||||
...(
|
...(
|
||||||
(isDebugMode && !isGroup35)
|
(isDebugMode && hasPermission('cards.view'))
|
||||||
? [
|
? [
|
||||||
{
|
{
|
||||||
title: 'Tableros',
|
title: 'Tableros',
|
||||||
@@ -179,71 +204,70 @@ export default function Sidebar({ isMobileOpen, onMobileClose }) {
|
|||||||
]
|
]
|
||||||
: []
|
: []
|
||||||
),
|
),
|
||||||
...(
|
{
|
||||||
isGroup35
|
title: 'Acceso a Usuarios',
|
||||||
? []
|
items: [
|
||||||
: [
|
...(
|
||||||
{
|
hasPermission('importadores.view')
|
||||||
title: 'Acceso a Usuarios',
|
? [{
|
||||||
items: [
|
name: 'Importadores',
|
||||||
// Botón Importadores como primer elemento
|
path: '/importers',
|
||||||
{
|
icon: (
|
||||||
name: 'Importadores',
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
path: '/importers',
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 01-8 0M12 11v10m-6 0h12a2 2 0 002-2v-5a2 2 0 00-2-2H6a2 2 0 00-2 2v5a2 2 0 002 2z" />
|
||||||
icon: (
|
</svg>
|
||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
)
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 01-8 0M12 11v10m-6 0h12a2 2 0 002-2v-5a2 2 0 00-2-2H6a2 2 0 00-2 2v5a2 2 0 002 2z" />
|
}]
|
||||||
</svg>
|
: []
|
||||||
)
|
),
|
||||||
},
|
...(
|
||||||
...(
|
hasPermission('usuarios.view')
|
||||||
isImportador
|
? [{
|
||||||
? []
|
name: 'Usuarios',
|
||||||
: [
|
path: '/users',
|
||||||
{
|
icon: (
|
||||||
name: 'Usuarios',
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
path: '/users',
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197m13.5-9a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0z" />
|
||||||
icon: (
|
</svg>
|
||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
)
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197m13.5-9a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0z" />
|
}]
|
||||||
</svg>
|
: []
|
||||||
)
|
),
|
||||||
}
|
...(
|
||||||
]
|
hasPermission('usuarios.manage_roles')
|
||||||
),
|
? [{
|
||||||
{
|
name: 'Perfiles',
|
||||||
name: 'Ventanilla Única',
|
path: '/profiles',
|
||||||
path: '/vucem',
|
icon: (
|
||||||
icon: (
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
||||||
<circle cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="2" fill="none" />
|
</svg>
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M8 12h8M12 8v8" />
|
)
|
||||||
</svg>
|
}]
|
||||||
)
|
: []
|
||||||
}
|
),
|
||||||
]
|
...(
|
||||||
}
|
hasPermission('vucem.view')
|
||||||
]
|
? [{
|
||||||
)
|
name: 'Ventanilla Única',
|
||||||
|
path: '/vucem',
|
||||||
|
icon: (
|
||||||
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<circle cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="2" fill="none" />
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M8 12h8M12 8v8" />
|
||||||
|
</svg>
|
||||||
|
)
|
||||||
|
}]
|
||||||
|
: []
|
||||||
|
),
|
||||||
|
]
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
// Filtrar secciones según si es importador y modo debug
|
// Ocultar secciones que no tienen ningún item visible
|
||||||
// Modificar items según si es importador
|
const menuSections = allMenuSections.filter(
|
||||||
const menuSections = allMenuSections
|
section => section && section.items && section.items.length > 0
|
||||||
.map(section => {
|
);
|
||||||
if (section.title === 'Organización') {
|
|
||||||
return {
|
|
||||||
...section,
|
|
||||||
items: section.items.filter(item => !(isImportador && item.name === 'Mi Organización'))
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// Para Tableros, filtrar la sección si es importador o si no está en modo debug
|
|
||||||
if (section.title === 'Tableros' && (isImportador || !isDebugMode)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return section;
|
|
||||||
})
|
|
||||||
.filter(Boolean);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -74,6 +74,7 @@ const refreshToken = async () => {
|
|||||||
localStorage.removeItem('refresh');
|
localStorage.removeItem('refresh');
|
||||||
localStorage.removeItem('user_id');
|
localStorage.removeItem('user_id');
|
||||||
localStorage.removeItem('user_is_importador');
|
localStorage.removeItem('user_is_importador');
|
||||||
|
localStorage.removeItem('user_permissions');
|
||||||
|
|
||||||
// Redirigir al login después de un pequeño delay
|
// Redirigir al login después de un pequeño delay
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
|||||||
99
src/hooks/usePollTaskStatus.js
Normal file
99
src/hooks/usePollTaskStatus.js
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
import { useState, useRef, useCallback } from 'react';
|
||||||
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
|
||||||
|
const API_BASE_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
|
// Estados que indican que la tarea ya terminó (no hay más que esperar)
|
||||||
|
const FINAL_STATES = new Set(['SUCCESS', 'FAILURE', 'completed', 'failed', 'cancelled']);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Polling acotado de estado de tarea.
|
||||||
|
*
|
||||||
|
* Uso:
|
||||||
|
* const { taskState, polling, poll, reset } = usePollTaskStatus({ maxAttempts: 3, intervalMs: 2500 });
|
||||||
|
*
|
||||||
|
* // Después de enviar la tarea al microservicio:
|
||||||
|
* poll(taskId);
|
||||||
|
*
|
||||||
|
* // taskState: null | { status, message, error, attempts }
|
||||||
|
* // polling: true mientras hay intentos pendientes
|
||||||
|
*/
|
||||||
|
export function usePollTaskStatus({ maxAttempts = 3, intervalMs = 2500 } = {}) {
|
||||||
|
const [taskState, setTaskState] = useState(null);
|
||||||
|
const [polling, setPolling] = useState(false);
|
||||||
|
|
||||||
|
const timeoutRef = useRef(null);
|
||||||
|
const abortedRef = useRef(false);
|
||||||
|
const attemptsRef = useRef(0);
|
||||||
|
|
||||||
|
const stop = useCallback(() => {
|
||||||
|
abortedRef.current = true;
|
||||||
|
if (timeoutRef.current) {
|
||||||
|
clearTimeout(timeoutRef.current);
|
||||||
|
timeoutRef.current = null;
|
||||||
|
}
|
||||||
|
setPolling(false);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const reset = useCallback(() => {
|
||||||
|
stop();
|
||||||
|
setTaskState(null);
|
||||||
|
attemptsRef.current = 0;
|
||||||
|
}, [stop]);
|
||||||
|
|
||||||
|
const poll = useCallback((taskId) => {
|
||||||
|
if (!taskId) return;
|
||||||
|
|
||||||
|
// Reiniciar estado previo
|
||||||
|
abortedRef.current = false;
|
||||||
|
attemptsRef.current = 0;
|
||||||
|
setPolling(true);
|
||||||
|
setTaskState({ status: 'PENDING', message: null, error: null, attempts: 0 });
|
||||||
|
|
||||||
|
const attempt = async () => {
|
||||||
|
if (abortedRef.current) return;
|
||||||
|
|
||||||
|
attemptsRef.current += 1;
|
||||||
|
const n = attemptsRef.current;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const res = await fetchWithAuth(`${API_BASE_URL}/tasks/status/${taskId}/`);
|
||||||
|
if (abortedRef.current) return;
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
setTaskState({ status: 'FAILURE', message: `Error HTTP ${res.status}`, error: true, attempts: n });
|
||||||
|
setPolling(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await res.json();
|
||||||
|
if (abortedRef.current) return;
|
||||||
|
|
||||||
|
const newState = {
|
||||||
|
status: data.status,
|
||||||
|
message: data.message || data.error || null,
|
||||||
|
error: data.error || null,
|
||||||
|
result: data.result || null,
|
||||||
|
attempts: n,
|
||||||
|
};
|
||||||
|
setTaskState(newState);
|
||||||
|
|
||||||
|
if (FINAL_STATES.has(data.status) || n >= maxAttempts) {
|
||||||
|
setPolling(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
timeoutRef.current = setTimeout(attempt, intervalMs);
|
||||||
|
|
||||||
|
} catch (err) {
|
||||||
|
if (abortedRef.current) return;
|
||||||
|
setTaskState({ status: 'FAILURE', message: err.message, error: true, attempts: n });
|
||||||
|
setPolling(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
attempt();
|
||||||
|
}, [maxAttempts, intervalMs]);
|
||||||
|
|
||||||
|
return { taskState, polling, poll, stop, reset };
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -22,6 +22,8 @@ async function patchProcesadoTrue(item) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
import { extractApiError } from '../api/apiError';
|
||||||
|
|
||||||
// Modal para mostrar registros cargados
|
// Modal para mostrar registros cargados
|
||||||
function RegistrosCargadosModal({ open, onClose, registros }) {
|
function RegistrosCargadosModal({ open, onClose, registros }) {
|
||||||
@@ -59,7 +61,7 @@ function RegistrosCargadosModal({ open, onClose, registros }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Procesar datastage (adaptado para mostrar registros cargados)
|
// Procesar datastage (adaptado para mostrar registros cargados)
|
||||||
async function procesarDatastage(item, setDatastages, setSuccess, setError, setRegistrosCargados, setShowRegistrosModal) {
|
async function procesarDatastage(item, setDatastages, setSuccess, showMessage, setRegistrosCargados, setShowRegistrosModal) {
|
||||||
try {
|
try {
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/${item.id}/procesar/`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/${item.id}/procesar/`;
|
||||||
const body = {
|
const body = {
|
||||||
@@ -72,53 +74,54 @@ async function procesarDatastage(item, setDatastages, setSuccess, setError, setR
|
|||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify(body)
|
body: JSON.stringify(body)
|
||||||
});
|
});
|
||||||
|
if (!res.ok) {
|
||||||
|
showMessage(await extractApiError(res), 'error');
|
||||||
|
return;
|
||||||
|
}
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
if (res.status === 200) {
|
await patchProcesadoTrue(item);
|
||||||
// PATCH para marcar como procesado en backend
|
setDatastages(prev => ({
|
||||||
await patchProcesadoTrue(item);
|
...prev,
|
||||||
setDatastages(prev => ({
|
results: Array.isArray(prev.results)
|
||||||
...prev,
|
? prev.results.map(d => d.id === item.id ? { ...d, procesado: true } : d)
|
||||||
results: Array.isArray(prev.results)
|
: []
|
||||||
? prev.results.map(d => d.id === item.id ? { ...d, procesado: true } : d)
|
}));
|
||||||
: []
|
if (data && data.task_id && data.detail) {
|
||||||
}));
|
setSuccess(`Procesamiento iniciado.\nTask ID: ${data.task_id}\n${data.detail}`);
|
||||||
// Mostrar el mensaje con task_id y detail si existen
|
|
||||||
if (data && data.task_id && data.detail) {
|
|
||||||
setSuccess(`Procesamiento iniciado.\nTask ID: ${data.task_id}\n${data.detail}`);
|
|
||||||
} else {
|
|
||||||
setSuccess('Procesado correctamente');
|
|
||||||
}
|
|
||||||
// El modal de éxito se debe mostrar en el componente principal después de setSuccess
|
|
||||||
// No se llama aquí
|
|
||||||
if (data && data.registros_cargados) {
|
|
||||||
setRegistrosCargados(data.registros_cargados);
|
|
||||||
setShowRegistrosModal(true);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
setError(data && data.detail ? data.detail : 'No se pudo procesar el datastage');
|
setSuccess('Procesado correctamente');
|
||||||
|
}
|
||||||
|
if (data && data.registros_cargados) {
|
||||||
|
setRegistrosCargados(data.registros_cargados);
|
||||||
|
setShowRegistrosModal(true);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setError('No se pudo procesar el datastage');
|
showMessage(e.message || 'No se pudo procesar el datastage', 'error');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Descarga autenticada de archivos datastage
|
// Descarga autenticada de archivos datastage
|
||||||
function downloadDatastageFile(id, filename) {
|
async function downloadDatastageFile(id, filename, showMessage) {
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/${id}/download-datastage/`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/${id}/download-datastage/`;
|
||||||
fetchWithAuth(url, { method: 'GET' })
|
try {
|
||||||
.then(async res => {
|
const res = await fetchWithAuth(url, { method: 'GET' });
|
||||||
if (!res.ok) throw new Error('Error al descargar archivo');
|
if (!res.ok) {
|
||||||
const blob = await res.blob();
|
const errMsg = await extractApiError(res);
|
||||||
const link = document.createElement('a');
|
throw new Error(errMsg);
|
||||||
link.href = window.URL.createObjectURL(blob);
|
}
|
||||||
link.download = filename || `datastage_${id}.zip`;
|
const blob = await res.blob();
|
||||||
document.body.appendChild(link);
|
const link = document.createElement('a');
|
||||||
link.click();
|
link.href = window.URL.createObjectURL(blob);
|
||||||
link.remove();
|
link.download = filename || `datastage_${id}.zip`;
|
||||||
})
|
document.body.appendChild(link);
|
||||||
.catch(() => alert('No se pudo descargar el archivo.'));
|
link.click();
|
||||||
|
link.remove();
|
||||||
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'No se pudo descargar el archivo', 'error');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Datastage() {
|
export default function Datastage() {
|
||||||
|
const { showMessage } = useNotification();
|
||||||
const focusKeeperRef = useRef(null);
|
const focusKeeperRef = useRef(null);
|
||||||
// datastages will hold the full API response object (with .results and .count)
|
// datastages will hold the full API response object (with .results and .count)
|
||||||
const [datastages, setDatastages] = useState({ results: [], count: 0 });
|
const [datastages, setDatastages] = useState({ results: [], count: 0 });
|
||||||
@@ -165,6 +168,7 @@ export default function Datastage() {
|
|||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setError(e.message);
|
setError(e.message);
|
||||||
|
showMessage(e.message, 'error');
|
||||||
setDatastages({ results: [], count: 0 });
|
setDatastages({ results: [], count: 0 });
|
||||||
}
|
}
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
@@ -183,7 +187,7 @@ export default function Datastage() {
|
|||||||
setSelected(detail);
|
setSelected(detail);
|
||||||
setShowDetailModal(true);
|
setShowDetailModal(true);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setError(e.message);
|
showMessage(e.message, 'error');
|
||||||
}
|
}
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
};
|
};
|
||||||
@@ -197,14 +201,16 @@ export default function Datastage() {
|
|||||||
const fd = new FormData();
|
const fd = new FormData();
|
||||||
fd.append('contribuyente', form.contribuyente);
|
fd.append('contribuyente', form.contribuyente);
|
||||||
if (form.archivo) fd.append('archivo', form.archivo);
|
if (form.archivo) fd.append('archivo', form.archivo);
|
||||||
await postFormDataWithAuth(`${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/`, fd);
|
const res = await postFormDataWithAuth(`${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/`, fd);
|
||||||
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
setForm({ archivo: null, contribuyente: '' });
|
setForm({ archivo: null, contribuyente: '' });
|
||||||
setShowCreateModal(false);
|
setShowCreateModal(false);
|
||||||
setSuccess('Datastage creado exitosamente');
|
setSuccess('Datastage creado exitosamente');
|
||||||
setShowSuccessModal(true);
|
setShowSuccessModal(true);
|
||||||
load();
|
load();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setError(e.message);
|
setShowCreateModal(false);
|
||||||
|
showMessage(e.message || 'Error al crear el datastage', 'error');
|
||||||
}
|
}
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
};
|
};
|
||||||
@@ -218,7 +224,8 @@ export default function Datastage() {
|
|||||||
const fd = new FormData();
|
const fd = new FormData();
|
||||||
fd.append('contribuyente', form.contribuyente);
|
fd.append('contribuyente', form.contribuyente);
|
||||||
if (form.archivo) fd.append('archivo', form.archivo);
|
if (form.archivo) fd.append('archivo', form.archivo);
|
||||||
await patchFormDataWithAuth(`${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/${editingId}/`, fd);
|
const res = await patchFormDataWithAuth(`${import.meta.env.VITE_EFC_API_URL}/datastage/datastages/${editingId}/`, fd);
|
||||||
|
if (!res.ok) throw new Error(await extractApiError(res));
|
||||||
setForm({ archivo: null, contribuyente: '' });
|
setForm({ archivo: null, contribuyente: '' });
|
||||||
setEditingId(null);
|
setEditingId(null);
|
||||||
setShowEditModal(false);
|
setShowEditModal(false);
|
||||||
@@ -226,7 +233,8 @@ export default function Datastage() {
|
|||||||
setShowSuccessModal(true);
|
setShowSuccessModal(true);
|
||||||
load();
|
load();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setError(e.message);
|
setShowEditModal(false);
|
||||||
|
showMessage(e.message || 'Error al actualizar el datastage', 'error');
|
||||||
}
|
}
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
};
|
};
|
||||||
@@ -244,7 +252,8 @@ export default function Datastage() {
|
|||||||
setShowSuccessModal(true);
|
setShowSuccessModal(true);
|
||||||
load();
|
load();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setError(e.message);
|
setShowDeleteModal(false);
|
||||||
|
showMessage(e.message || 'Error al eliminar el datastage', 'error');
|
||||||
}
|
}
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
};
|
};
|
||||||
@@ -269,8 +278,9 @@ export default function Datastage() {
|
|||||||
} else {
|
} else {
|
||||||
setImportadores([]);
|
setImportadores([]);
|
||||||
}
|
}
|
||||||
} catch {
|
} catch (e) {
|
||||||
setImportadores([]);
|
setImportadores([]);
|
||||||
|
showMessage(e.message || 'Error al cargar importadores', 'error');
|
||||||
}
|
}
|
||||||
setShowCreateModal(true);
|
setShowCreateModal(true);
|
||||||
};
|
};
|
||||||
@@ -381,11 +391,11 @@ export default function Datastage() {
|
|||||||
<tr key={item.id} className="hover:bg-slate-50 transition-colors">
|
<tr key={item.id} className="hover:bg-slate-50 transition-colors">
|
||||||
<td className="border px-2 py-2 text-center">{item.id}</td>
|
<td className="border px-2 py-2 text-center">{item.id}</td>
|
||||||
<td className="border px-2 py-2 max-w-xs truncate">
|
<td className="border px-2 py-2 max-w-xs truncate">
|
||||||
{item.archivo ? (
|
{item.download_url ? (
|
||||||
<span className="flex items-center gap-1 text-xs text-gray-700 truncate font-mono">
|
<span className="flex items-center gap-1 text-xs text-gray-700 truncate font-mono">
|
||||||
{(() => {
|
{(() => {
|
||||||
try {
|
try {
|
||||||
const url = new URL(item.archivo);
|
const url = new URL(item.download_url);
|
||||||
return decodeURIComponent(url.pathname.split('/').pop() || '');
|
return decodeURIComponent(url.pathname.split('/').pop() || '');
|
||||||
} catch {
|
} catch {
|
||||||
return '';
|
return '';
|
||||||
@@ -399,12 +409,13 @@ export default function Datastage() {
|
|||||||
item.id,
|
item.id,
|
||||||
(() => {
|
(() => {
|
||||||
try {
|
try {
|
||||||
const url = new URL(item.archivo);
|
const url = new URL(item.download_url);
|
||||||
return decodeURIComponent(url.pathname.split('/').pop() || '');
|
return decodeURIComponent(url.pathname.split('/').pop() || '');
|
||||||
} catch {
|
} catch {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
})()
|
})(),
|
||||||
|
showMessage
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
@@ -444,7 +455,7 @@ export default function Datastage() {
|
|||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" /></svg>
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" /></svg>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
onClick={() => procesarDatastage(item, setDatastages, setSuccess, setError, setRegistrosCargados, setShowRegistrosModal)}
|
onClick={() => procesarDatastage(item, setDatastages, setSuccess, showMessage, setRegistrosCargados, setShowRegistrosModal)}
|
||||||
className={`inline-flex items-center justify-center w-9 h-9 rounded-lg border transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-offset-1 ${item.procesado ? 'bg-gray-100 border-gray-200 cursor-not-allowed opacity-50' : 'bg-green-50 border-green-200 hover:bg-green-100 hover:border-green-300 focus:ring-green-500 cursor-pointer'}`}
|
className={`inline-flex items-center justify-center w-9 h-9 rounded-lg border transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-offset-1 ${item.procesado ? 'bg-gray-100 border-gray-200 cursor-not-allowed opacity-50' : 'bg-green-50 border-green-200 hover:bg-green-100 hover:border-green-300 focus:ring-green-500 cursor-pointer'}`}
|
||||||
title={item.procesado ? 'Ya procesado' : 'Procesar'}
|
title={item.procesado ? 'Ya procesado' : 'Procesar'}
|
||||||
disabled={item.procesado}
|
disabled={item.procesado}
|
||||||
@@ -507,16 +518,17 @@ export default function Datastage() {
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-1 text-xs text-gray-700 break-all font-mono mb-1">
|
<div className="flex items-center gap-1 text-xs text-gray-700 break-all font-mono mb-1">
|
||||||
{item.archivo ? (
|
{item.download_url ? (
|
||||||
<span className="flex items-center gap-1">
|
<span className="flex items-center gap-1">
|
||||||
{(() => { try { const url = new URL(item.archivo); return decodeURIComponent(url.pathname.split('/').pop() || ''); } catch { return ''; } })()}
|
{(() => { try { const url = new URL(item.download_url); return decodeURIComponent(url.pathname.split('/').pop() || ''); } catch { return ''; } })()}
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="inline-flex items-center justify-center w-6 h-6 rounded bg-blue-100 border border-blue-200 text-blue-700 hover:bg-blue-200 hover:border-blue-300 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-blue-400 ml-1"
|
className="inline-flex items-center justify-center w-6 h-6 rounded bg-blue-100 border border-blue-200 text-blue-700 hover:bg-blue-200 hover:border-blue-300 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-blue-400 ml-1"
|
||||||
title="Descargar archivo"
|
title="Descargar archivo"
|
||||||
onClick={() => downloadDatastageFile(
|
onClick={() => downloadDatastageFile(
|
||||||
item.id,
|
item.id,
|
||||||
(() => { try { const url = new URL(item.archivo); return decodeURIComponent(url.pathname.split('/').pop() || ''); } catch { return ''; } })()
|
(() => { try { const url = new URL(item.download_url); return decodeURIComponent(url.pathname.split('/').pop() || ''); } catch { return ''; } })(),
|
||||||
|
showMessage
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
@@ -555,7 +567,7 @@ export default function Datastage() {
|
|||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" /></svg>
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" /></svg>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
onClick={() => procesarDatastage(item, setDatastages, setSuccess, setError, setRegistrosCargados, setShowRegistrosModal)}
|
onClick={() => procesarDatastage(item, setDatastages, setSuccess, showMessage, setRegistrosCargados, setShowRegistrosModal)}
|
||||||
className={`inline-flex items-center justify-center w-9 h-9 rounded-lg border transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-offset-1 ${item.procesado ? 'bg-gray-100 border-gray-200 cursor-not-allowed opacity-50' : 'bg-green-50 border-green-200 hover:bg-green-100 hover:border-green-300 focus:ring-green-500 cursor-pointer'}`}
|
className={`inline-flex items-center justify-center w-9 h-9 rounded-lg border transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-offset-1 ${item.procesado ? 'bg-gray-100 border-gray-200 cursor-not-allowed opacity-50' : 'bg-green-50 border-green-200 hover:bg-green-100 hover:border-green-300 focus:ring-green-500 cursor-pointer'}`}
|
||||||
title={item.procesado ? 'Ya procesado' : 'Procesar'}
|
title={item.procesado ? 'Ya procesado' : 'Procesar'}
|
||||||
disabled={item.procesado}
|
disabled={item.procesado}
|
||||||
@@ -803,7 +815,7 @@ export default function Datastage() {
|
|||||||
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-40">
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-40">
|
||||||
<div className="bg-white rounded-xl shadow-2xl border border-blue-200 p-8 max-w-sm w-full flex flex-col animate-fade-in">
|
<div className="bg-white rounded-xl shadow-2xl border border-blue-200 p-8 max-w-sm w-full flex flex-col animate-fade-in">
|
||||||
<h3 className="text-lg font-bold mb-2 text-blue-900">Detalle de Datastage #{selected.id}</h3>
|
<h3 className="text-lg font-bold mb-2 text-blue-900">Detalle de Datastage #{selected.id}</h3>
|
||||||
<div className="mb-1"><b>Archivo:</b> {selected.archivo ? <a href={selected.archivo} target="_blank" rel="noopener noreferrer" className="text-blue-600 underline break-all">Descargar</a> : <span className="text-gray-400">Sin archivo</span>}</div>
|
{/* <div className="mb-1"><b>Archivo:</b> {selected.download_url ? <a href={selected.download_url} target="_blank" rel="noopener noreferrer" className="text-blue-600 underline break-all">Descargar</a> : <span className="text-gray-400">Sin archivo</span>}</div> */}
|
||||||
<div className="mb-1"><b>Contribuyente:</b> {selected.contribuyente}</div>
|
<div className="mb-1"><b>Contribuyente:</b> {selected.contribuyente}</div>
|
||||||
<div className="mb-1"><b>Procesado:</b> <span className={selected.procesado ? 'bg-green-100 text-green-700 px-2 py-0.5 rounded-full text-xs' : 'bg-yellow-100 text-yellow-700 px-2 py-0.5 rounded-full text-xs'}>{selected.procesado ? 'Sí' : 'No'}</span></div>
|
<div className="mb-1"><b>Procesado:</b> <span className={selected.procesado ? 'bg-green-100 text-green-700 px-2 py-0.5 rounded-full text-xs' : 'bg-yellow-100 text-yellow-700 px-2 py-0.5 rounded-full text-xs'}>{selected.procesado ? 'Sí' : 'No'}</span></div>
|
||||||
<div className="mb-1"><b>Organización:</b> {selected.organizacion}</div>
|
<div className="mb-1"><b>Organización:</b> {selected.organizacion}</div>
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ export default function Documents() {
|
|||||||
const [expedienteFilter, setExpedienteFilter] = useState('all'); // all, true, false
|
const [expedienteFilter, setExpedienteFilter] = useState('all'); // all, true, false
|
||||||
const [contribuyenteFilter, setContribuyenteFilter] = useState('');
|
const [contribuyenteFilter, setContribuyenteFilter] = useState('');
|
||||||
const [contribuyenteInput, setContribuyenteInput] = useState('');
|
const [contribuyenteInput, setContribuyenteInput] = useState('');
|
||||||
const [fechaPagoFilter, setFechaPagoFilter] = useState('');
|
const [fechaInicioFilter, setFechaInicioFilter] = useState('');
|
||||||
|
const [fechaFinFilter, setFechaFinFilter] = useState('');
|
||||||
const [pedimentoFilter, setPedimentoFilter] = useState('');
|
const [pedimentoFilter, setPedimentoFilter] = useState('');
|
||||||
const [searchFilter, setSearchFilter] = useState('');
|
const [searchFilter, setSearchFilter] = useState('');
|
||||||
const [curpApoderadoFilter, setCurpApoderadoFilter] = useState('');
|
const [curpApoderadoFilter, setCurpApoderadoFilter] = useState('');
|
||||||
@@ -63,6 +64,8 @@ export default function Documents() {
|
|||||||
const [aduanaFilter, setAduanaFilter] = useState('');
|
const [aduanaFilter, setAduanaFilter] = useState('');
|
||||||
const [tipoOperacionFilter, setTipoOperacionFilter] = useState('');
|
const [tipoOperacionFilter, setTipoOperacionFilter] = useState('');
|
||||||
const [clavePedimentoFilter, setClavePedimentoFilter] = useState('');
|
const [clavePedimentoFilter, setClavePedimentoFilter] = useState('');
|
||||||
|
const [sortField, setSortField] = useState('created_at');
|
||||||
|
const [sortDir, setSortDir] = useState('desc');
|
||||||
const { showMessage } = useNotification();
|
const { showMessage } = useNotification();
|
||||||
|
|
||||||
// Estados para selección múltiple
|
// Estados para selección múltiple
|
||||||
@@ -105,18 +108,20 @@ export default function Documents() {
|
|||||||
|
|
||||||
// Fetching usando la función tipada de TypeScript
|
// Fetching usando la función tipada de TypeScript
|
||||||
const fetchPedimentosData = async (page = currentPage, pageSize = itemsPerPage) => {
|
const fetchPedimentosData = async (page = currentPage, pageSize = itemsPerPage) => {
|
||||||
// Construir objeto de filtros
|
const ordering = sortDir === 'desc' ? `-${sortField}` : sortField;
|
||||||
const filters = {
|
const filters = {
|
||||||
search: searchFilter || undefined,
|
search: searchFilter || undefined,
|
||||||
pedimento_app: pedimentoFilter || undefined,
|
pedimento_app: pedimentoFilter || undefined,
|
||||||
existe_expediente: expedienteFilter === 'all' ? undefined : expedienteFilter,
|
existe_expediente: expedienteFilter === 'all' ? undefined : expedienteFilter,
|
||||||
contribuyente: contribuyenteFilter || undefined,
|
contribuyente: contribuyenteFilter || undefined,
|
||||||
curp_apoderado: curpApoderadoFilter || undefined,
|
curp_apoderado: curpApoderadoFilter || undefined,
|
||||||
fecha_pago: fechaPagoFilter || undefined,
|
fecha_pago_desde: fechaInicioFilter || undefined,
|
||||||
|
fecha_pago_hasta: fechaFinFilter || undefined,
|
||||||
patente: patenteFilter || undefined,
|
patente: patenteFilter || undefined,
|
||||||
aduana: aduanaFilter || undefined,
|
aduana: aduanaFilter || undefined,
|
||||||
tipo_operacion: tipoOperacionFilter || undefined,
|
tipo_operacion: tipoOperacionFilter || undefined,
|
||||||
clave_pedimento: clavePedimentoFilter || undefined,
|
clave_pedimento: clavePedimentoFilter || undefined,
|
||||||
|
ordering,
|
||||||
};
|
};
|
||||||
return await fetchDocuments(page, pageSize, filters);
|
return await fetchDocuments(page, pageSize, filters);
|
||||||
};
|
};
|
||||||
@@ -125,7 +130,7 @@ export default function Documents() {
|
|||||||
const { data: pedimentos, loading, error, refetch } = usePolling(
|
const { data: pedimentos, loading, error, refetch } = usePolling(
|
||||||
() => fetchPedimentosData(currentPage, itemsPerPage),
|
() => fetchPedimentosData(currentPage, itemsPerPage),
|
||||||
30000, // 30 segundos
|
30000, // 30 segundos
|
||||||
[currentPage, itemsPerPage, searchFilter, pedimentoFilter, expedienteFilter, alertaFilter, contribuyenteFilter, curpApoderadoFilter, fechaPagoFilter, patenteFilter, aduanaFilter, tipoOperacionFilter, clavePedimentoFilter]
|
[currentPage, itemsPerPage, searchFilter, pedimentoFilter, expedienteFilter, alertaFilter, contribuyenteFilter, curpApoderadoFilter, fechaInicioFilter, fechaFinFilter, patenteFilter, aduanaFilter, tipoOperacionFilter, clavePedimentoFilter, sortField, sortDir]
|
||||||
);
|
);
|
||||||
|
|
||||||
// Manejo de errores de sesión
|
// Manejo de errores de sesión
|
||||||
@@ -230,6 +235,125 @@ export default function Documents() {
|
|||||||
// }
|
// }
|
||||||
// // showMessage('Error durante la descarga masiva', 'error');
|
// // showMessage('Error durante la descarga masiva', 'error');
|
||||||
// };
|
// };
|
||||||
|
|
||||||
|
// accionar pedimento completo si no se proceso
|
||||||
|
const handleEjecutarServicio = async (pedimentoId, org) => {
|
||||||
|
try {
|
||||||
|
showMessage(`Procesando pedimento ${pedimentoId}...`, 'info');
|
||||||
|
|
||||||
|
// Construir el body de la petición
|
||||||
|
const body = {
|
||||||
|
organizacion: org, // Ajusta según tu organización, puede ser string o número
|
||||||
|
pedimento: pedimentoId.toString() // Convertir a string si es necesario
|
||||||
|
};
|
||||||
|
|
||||||
|
// Endpoint para pedimento completo
|
||||||
|
const MICROSERVICE_URL = import.meta.env.VITE_EFC_MICROSERVICE_URL;
|
||||||
|
const endpoint = `${MICROSERVICE_URL}/services/pedimento_completo`;
|
||||||
|
|
||||||
|
const response = await postWithAuth(endpoint, body);
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const errorData = await response.json().catch(() => ({}));
|
||||||
|
throw new Error(errorData.message || errorData.detail || `Error ${response.status}: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await response.json();
|
||||||
|
console.log('Resultado del servicio:', result);
|
||||||
|
|
||||||
|
showMessage(`Pedimento ${pedimentoId} procesado correctamente`, 'success');
|
||||||
|
|
||||||
|
// Opcional: Refrescar la lista después de procesar
|
||||||
|
setTimeout(() => {
|
||||||
|
refetch();
|
||||||
|
}, 2000);
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error ejecutando servicio:', error);
|
||||||
|
showMessage(`Error al procesar pedimento ${pedimentoId}: ${error.message}`, 'error');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Agrega esta función después de handleEjecutarServicio
|
||||||
|
const handleProcesarMultiplesPedimentos = async () => {
|
||||||
|
const pedimentosNoProcesados = currentDocuments.filter(ped => selectedDocuments.includes(ped.id) && !ped.existe_expediente);
|
||||||
|
|
||||||
|
if (pedimentosNoProcesados.length === 0) {
|
||||||
|
showMessage('No hay pedimentos seleccionados que estén sin procesar', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pedimentosNoProcesados.length > 200) {
|
||||||
|
showMessage(`Máximo 200 pedimentos por solicitud. Seleccionados: ${pedimentosNoProcesados.length}`, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
showMessage(`Iniciando procesamiento de ${pedimentosNoProcesados.length} pedimentos...`, 'info');
|
||||||
|
|
||||||
|
const pedimentosData = pedimentosNoProcesados.map(ped => ({
|
||||||
|
id: ped.id,
|
||||||
|
pedimento_app: ped.pedimento_app,
|
||||||
|
aduana: ped.aduana,
|
||||||
|
patente: ped.patente,
|
||||||
|
pedimento: ped.pedimento,
|
||||||
|
organizacion: ped.organizacion
|
||||||
|
}));
|
||||||
|
|
||||||
|
const MICROSERVICE_URL = import.meta.env.VITE_EFC_MICROSERVICE_URL;
|
||||||
|
const response = await postWithAuth(`${MICROSERVICE_URL}/async/services/pedimento_completo/multiple`, {
|
||||||
|
organizacion: pedimentosNoProcesados[0].organizacion.toString(),
|
||||||
|
pedimentos: pedimentosNoProcesados.map(p => p.id.toString())
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const errorData = await response.json().catch(() => ({}));
|
||||||
|
throw new Error(errorData.message || errorData.detail || `Error ${response.status}: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await response.json();
|
||||||
|
|
||||||
|
showMessage(
|
||||||
|
`Tarea iniciada: ${result.total_pedimentos} pedimentos encolados. Task ID: ${result.task_id}`,
|
||||||
|
'success'
|
||||||
|
);
|
||||||
|
|
||||||
|
setSelectedDocuments([]);
|
||||||
|
setIsSelectAll(false);
|
||||||
|
|
||||||
|
// Opcional: Iniciar polling para monitorear el progreso
|
||||||
|
// const intervalId = setInterval(async () => {
|
||||||
|
// const statusResponse = await fetchWithAuth(`${MICROSERVICE_URL}/async/task-status/${result.task_id}`);
|
||||||
|
|
||||||
|
// if (statusResponse.ok) {
|
||||||
|
// const status = await statusResponse.json();
|
||||||
|
|
||||||
|
// if (status.status === 'SUCCESS') {
|
||||||
|
// clearInterval(intervalId);
|
||||||
|
// const { success_count, failed_count, elapsed_seconds } = status.result;
|
||||||
|
// showMessage(
|
||||||
|
// `Procesamiento completado: ${success_count} exitosos, ${failed_count} fallidos. Tiempo: ${elapsed_seconds}s`,
|
||||||
|
// failed_count > 0 ? 'warning' : 'success'
|
||||||
|
// );
|
||||||
|
// refetch(); // Refrescar la lista
|
||||||
|
// } else if (status.status === 'FAILURE') {
|
||||||
|
// clearInterval(intervalId);
|
||||||
|
// showMessage(`Error en el procesamiento: ${status.message}`, 'error');
|
||||||
|
// } else if (status.status === 'PROGRESS' && status.progress) {
|
||||||
|
// const { current, total, current_pedimento, percentage } = status.progress;
|
||||||
|
// console.log(`Progreso: ${percentage}% - ${current}/${total}: ${current_pedimento}`);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }, 5000);
|
||||||
|
|
||||||
|
setTimeout(() => clearInterval(intervalId), 600000);
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error procesando múltiples pedimentos:', error);
|
||||||
|
showMessage(`Error: ${error.message}`, 'error');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// Función para descargar documentos seleccionados
|
// Función para descargar documentos seleccionados
|
||||||
const handleDownloadSelected = async () => {
|
const handleDownloadSelected = async () => {
|
||||||
if (selectedDocuments.length === 0) {
|
if (selectedDocuments.length === 0) {
|
||||||
@@ -594,6 +718,7 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
|
|
||||||
const fileCount = uploadType === 'folders' ? filesToUpload.length : selectedFiles.length;
|
const fileCount = uploadType === 'folders' ? filesToUpload.length : selectedFiles.length;
|
||||||
showMessage(`Subiendo ${fileCount} archivo(s)...`, 'info');
|
showMessage(`Subiendo ${fileCount} archivo(s)...`, 'info');
|
||||||
|
let alertMessage = '';
|
||||||
|
|
||||||
const uploadEndpoint = `${API_URL}/customs/pedimentos/bulk-create/`;
|
const uploadEndpoint = `${API_URL}/customs/pedimentos/bulk-create/`;
|
||||||
const result = await postFormDataWithAuth(uploadEndpoint, formData);
|
const result = await postFormDataWithAuth(uploadEndpoint, formData);
|
||||||
@@ -610,10 +735,38 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
}
|
}
|
||||||
showMessage(errorMsg, 'error');
|
showMessage(errorMsg, 'error');
|
||||||
}else{
|
}else{
|
||||||
showMessage(
|
const data = await result.json();
|
||||||
`${result.uploaded_count || fileCount} archivo(s) subido(s) exitosamente`,
|
console.log(data);
|
||||||
'success'
|
if(data.already_existing_count > 0){
|
||||||
);
|
// Crear una cadena con todos los pedimentos
|
||||||
|
const existingList = data.already_existing
|
||||||
|
.map(pedimento => `${pedimento.pedimento_app}`)
|
||||||
|
.join('\n');
|
||||||
|
showMessage(
|
||||||
|
`${data.message}\n\nPedimentos ya existentes:\n${existingList}`,
|
||||||
|
'warning'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else if(data.failed_files && data.failed_files.length > 0) {
|
||||||
|
// Sección de archivos fallidos
|
||||||
|
alertMessage += `ARCHIVOS CON ERRORES (${data.failed_files.length}):\n`;
|
||||||
|
data.failed_files.forEach((file, index) => {
|
||||||
|
alertMessage += `\n${index + 1}. ${file.archivo_original}`;
|
||||||
|
alertMessage += `\n Error: ${file.error}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
showMessage(
|
||||||
|
`${alertMessage}`,
|
||||||
|
'warning'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
showMessage(
|
||||||
|
`${result.uploaded_count || fileCount} archivo(s) subido(s) exitosamente`,
|
||||||
|
'success'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// showMessage(
|
// showMessage(
|
||||||
@@ -662,13 +815,80 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
expedienteFilter !== 'all',
|
expedienteFilter !== 'all',
|
||||||
contribuyenteFilter,
|
contribuyenteFilter,
|
||||||
curpApoderadoFilter,
|
curpApoderadoFilter,
|
||||||
fechaPagoFilter,
|
fechaInicioFilter,
|
||||||
|
fechaFinFilter,
|
||||||
patenteFilter,
|
patenteFilter,
|
||||||
aduanaFilter,
|
aduanaFilter,
|
||||||
tipoOperacionFilter,
|
tipoOperacionFilter,
|
||||||
clavePedimentoFilter,
|
clavePedimentoFilter,
|
||||||
].some(Boolean);
|
].some(Boolean);
|
||||||
|
|
||||||
|
const handleDescargarFiltroExcel = async () => {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
if (searchFilter) params.append('search', searchFilter);
|
||||||
|
if (pedimentoFilter) params.append('pedimento_app', pedimentoFilter);
|
||||||
|
if (expedienteFilter !== 'all') params.append('existe_expediente', expedienteFilter);
|
||||||
|
if (contribuyenteFilter) params.append('contribuyente', contribuyenteFilter);
|
||||||
|
if (curpApoderadoFilter) params.append('curp_apoderado', curpApoderadoFilter);
|
||||||
|
if (fechaInicioFilter) params.append('fecha_pago_desde', fechaInicioFilter);
|
||||||
|
if (fechaFinFilter) params.append('fecha_pago_hasta', fechaFinFilter);
|
||||||
|
if (patenteFilter) params.append('patente', patenteFilter);
|
||||||
|
if (aduanaFilter) params.append('aduana', aduanaFilter);
|
||||||
|
if (tipoOperacionFilter) params.append('tipo_operacion', tipoOperacionFilter);
|
||||||
|
if (clavePedimentoFilter) params.append('clave_pedimento', clavePedimentoFilter);
|
||||||
|
|
||||||
|
try {
|
||||||
|
showMessage('Generando Excel, por favor espera...', 'info');
|
||||||
|
const res = await fetchWithAuth(`${API_URL}/customs/pedimentos/export-excel/?${params.toString()}`);
|
||||||
|
if (!res.ok) {
|
||||||
|
showMessage('Error al generar el archivo Excel', 'error');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const blob = await res.blob();
|
||||||
|
const url = window.URL.createObjectURL(blob);
|
||||||
|
const a = document.createElement('a');
|
||||||
|
a.href = url;
|
||||||
|
const hdr = res.headers.get('Content-Disposition') || '';
|
||||||
|
const match = hdr.match(/filename="([^"]+)"/);
|
||||||
|
a.download = match ? match[1] : 'pedimentos.xlsx';
|
||||||
|
a.click();
|
||||||
|
a.remove();
|
||||||
|
window.URL.revokeObjectURL(url);
|
||||||
|
showMessage('Excel descargado correctamente', 'success');
|
||||||
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'Error al descargar el Excel', 'error');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSort = (field) => {
|
||||||
|
if (sortField === field) {
|
||||||
|
setSortDir(prev => prev === 'asc' ? 'desc' : 'asc');
|
||||||
|
} else {
|
||||||
|
setSortField(field);
|
||||||
|
setSortDir('asc');
|
||||||
|
}
|
||||||
|
setCurrentPage(1);
|
||||||
|
};
|
||||||
|
|
||||||
|
const SortIcon = ({ field }) => {
|
||||||
|
if (sortField !== field) {
|
||||||
|
return (
|
||||||
|
<svg className="inline ml-1 w-3 h-3 text-gray-400 opacity-50" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M7 16V4m0 0L3 8m4-4l4 4M17 8v12m0 0l4-4m-4 4l-4-4" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return sortDir === 'asc' ? (
|
||||||
|
<svg className="inline ml-1 w-3 h-3 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 15l7-7 7 7" />
|
||||||
|
</svg>
|
||||||
|
) : (
|
||||||
|
<svg className="inline ml-1 w-3 h-3 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 9l-7 7-7-7" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
// El layout principal y la tabla siempre se renderizan, loader/error/empty solo dentro del área de la tabla
|
// El layout principal y la tabla siempre se renderizan, loader/error/empty solo dentro del área de la tabla
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -827,11 +1047,33 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
className="w-full border border-gray-300 rounded-xl px-3 py-2.5 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
className="w-full border border-gray-300 rounded-xl px-3 py-2.5 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{/* Fecha de pago */}
|
{/* Fecha de inicio */}
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<label className="text-xs font-semibold text-gray-700 mb-1.5">Fecha de pago</label>
|
<label className="text-xs font-semibold text-gray-700 mb-1.5">Fecha de inicio</label>
|
||||||
<input type="date" value={fechaPagoFilter} onChange={e => setFechaPagoFilter(e.target.value)}
|
<input
|
||||||
className="w-full border border-gray-300 rounded-xl px-3 py-2.5 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md" />
|
type="date"
|
||||||
|
value={fechaInicioFilter}
|
||||||
|
onChange={e => {
|
||||||
|
setFechaInicioFilter(e.target.value);
|
||||||
|
setCurrentPage(1);
|
||||||
|
}}
|
||||||
|
max={fechaFinFilter || undefined}
|
||||||
|
className="w-full border border-gray-300 rounded-xl px-3 py-2.5 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{/* Fecha de fin */}
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<label className="text-xs font-semibold text-gray-700 mb-1.5">Fecha de fin</label>
|
||||||
|
<input
|
||||||
|
type="date"
|
||||||
|
value={fechaFinFilter}
|
||||||
|
onChange={e => {
|
||||||
|
setFechaFinFilter(e.target.value);
|
||||||
|
setCurrentPage(1);
|
||||||
|
}}
|
||||||
|
min={fechaInicioFilter || undefined}
|
||||||
|
className="w-full border border-gray-300 rounded-xl px-3 py-2.5 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
{/* Patente */}
|
{/* Patente */}
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
@@ -916,6 +1158,21 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
</div>
|
</div>
|
||||||
<div className="px-6 py-4">
|
<div className="px-6 py-4">
|
||||||
<div className="flex flex-wrap gap-3">
|
<div className="flex flex-wrap gap-3">
|
||||||
|
{/* NUEVO BOTÓN PARA PROCESAR MÚLTIPLES */}
|
||||||
|
<button
|
||||||
|
onClick={handleProcesarMultiplesPedimentos}
|
||||||
|
className="inline-flex items-center px-4 py-2 font-medium text-white transition-colors duration-200 bg-green-600 rounded-lg shadow-sm hover:bg-green-700 hover:shadow-md"
|
||||||
|
>
|
||||||
|
<svg className="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
|
||||||
|
</svg>
|
||||||
|
Procesar seleccionados ({selectedDocuments.filter(id => {
|
||||||
|
const ped = currentDocuments.find(p => p.id === id);
|
||||||
|
return ped && !ped.existe_expediente;
|
||||||
|
}).length} pendientes)
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Botón existente de eliminar */}
|
||||||
<button
|
<button
|
||||||
onClick={handleDeleteSelected}
|
onClick={handleDeleteSelected}
|
||||||
className="inline-flex items-center px-4 py-2 font-medium text-white transition-colors duration-200 bg-red-600 rounded-lg shadow-sm hover:bg-red-700 hover:shadow-md"
|
className="inline-flex items-center px-4 py-2 font-medium text-white transition-colors duration-200 bg-red-600 rounded-lg shadow-sm hover:bg-red-700 hover:shadow-md"
|
||||||
@@ -971,14 +1228,23 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
</svg>
|
</svg>
|
||||||
Actualizar Ahora
|
Actualizar Ahora
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
onClick={() => {handleDownloadSelected()}}
|
onClick={() => handleDownloadSelected()}
|
||||||
className="inline-flex items-center px-4 py-2.5 border border-transparent text-sm font-medium rounded-xl text-white bg-gradient-to-r from-purple-600 to-purple-700 hover:from-purple-700 hover:to-purple-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition-all duration-200 transform hover:scale-105 shadow-lg"
|
className="inline-flex items-center px-4 py-2.5 border border-transparent text-sm font-medium rounded-xl text-white bg-gradient-to-r from-purple-600 to-purple-700 hover:from-purple-700 hover:to-purple-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition-all duration-200 transform hover:scale-105 shadow-lg"
|
||||||
>
|
>
|
||||||
<svg className="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4" />
|
||||||
</svg>
|
</svg>
|
||||||
{hasActiveFilters ? 'Descargar por Filtro' : 'Descargar Todos'}
|
Descargar Expedientes
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={handleDescargarFiltroExcel}
|
||||||
|
className="inline-flex items-center px-4 py-2.5 border border-transparent text-sm font-medium rounded-xl text-white bg-gradient-to-r from-green-600 to-green-700 hover:from-green-700 hover:to-green-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500 transition-all duration-200 transform hover:scale-105 shadow-lg"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||||
|
</svg>
|
||||||
|
{hasActiveFilters ? 'Descargar por Filtro' : 'Descargar Todos (Excel)'}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -1013,12 +1279,49 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
className="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500"
|
className="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500"
|
||||||
/>
|
/>
|
||||||
</th>
|
</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Pedimento</th>
|
<th
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Fecha Pago</th>
|
scope="col"
|
||||||
|
className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase cursor-pointer select-none hover:bg-gray-100 transition-colors"
|
||||||
|
onClick={() => handleSort('pedimento')}
|
||||||
|
title="Ordenar por pedimento"
|
||||||
|
>
|
||||||
|
Pedimento<SortIcon field="pedimento" />
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase cursor-pointer select-none hover:bg-gray-100 transition-colors"
|
||||||
|
onClick={() => handleSort('fecha_pago')}
|
||||||
|
title="Ordenar por fecha de pago"
|
||||||
|
>
|
||||||
|
Fecha Pago<SortIcon field="fecha_pago" />
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase cursor-pointer select-none hover:bg-gray-100 transition-colors"
|
||||||
|
onClick={() => handleSort('aduana')}
|
||||||
|
title="Ordenar por aduana"
|
||||||
|
>
|
||||||
|
Aduana<SortIcon field="aduana" />
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase cursor-pointer select-none hover:bg-gray-100 transition-colors"
|
||||||
|
onClick={() => handleSort('patente')}
|
||||||
|
title="Ordenar por patente"
|
||||||
|
>
|
||||||
|
Patente<SortIcon field="patente" />
|
||||||
|
</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Contribuyente</th>
|
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Contribuyente</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">CURP Apod.</th>
|
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">CURP Apod.</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Partidas</th>
|
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Partidas</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">F. Carga</th>
|
<th
|
||||||
|
scope="col"
|
||||||
|
className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase cursor-pointer select-none hover:bg-gray-100 transition-colors"
|
||||||
|
onClick={() => handleSort('created_at')}
|
||||||
|
title="Ordenar por fecha de carga"
|
||||||
|
>
|
||||||
|
F. Carga<SortIcon field="created_at" />
|
||||||
|
</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Tipo Op.</th>
|
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Tipo Op.</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Clave</th>
|
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Clave</th>
|
||||||
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Archivos</th>
|
<th scope="col" className="px-4 py-2 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">Archivos</th>
|
||||||
@@ -1070,6 +1373,8 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
</Link>
|
</Link>
|
||||||
</td>
|
</td>
|
||||||
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.fecha_pago}</td>
|
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.fecha_pago}</td>
|
||||||
|
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.aduana ?? '—'}</td>
|
||||||
|
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.patente ?? '—'}</td>
|
||||||
<td className="max-w-xs px-4 py-3 text-xs text-gray-900 truncate" title={ped.contribuyente}>{ped.contribuyente}</td>
|
<td className="max-w-xs px-4 py-3 text-xs text-gray-900 truncate" title={ped.contribuyente}>{ped.contribuyente}</td>
|
||||||
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.curp_apoderado}</td>
|
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.curp_apoderado}</td>
|
||||||
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.numero_partidas}</td>
|
<td className="px-4 py-3 text-xs text-gray-900 whitespace-nowrap">{ped.numero_partidas}</td>
|
||||||
@@ -1116,6 +1421,21 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
|||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td className="px-4 py-3 text-center whitespace-nowrap">
|
<td className="px-4 py-3 text-center whitespace-nowrap">
|
||||||
|
{ped.existe_expediente ? (
|
||||||
|
<>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<button
|
||||||
|
className="p-2 text-green-600 transition-colors duration-200 rounded-full hover:text-green-800 hover:bg-green-50 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2"
|
||||||
|
onClick={() => handleEjecutarServicio(ped.id, ped.organizacion)}
|
||||||
|
title="Procesar"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4 text-green-600" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M8 5v14l11-7z" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
{/* handleEjecutarServicio */}
|
||||||
<button
|
<button
|
||||||
className="p-2 text-blue-600 transition-colors duration-200 rounded-full hover:text-blue-800 hover:bg-blue-50 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2"
|
className="p-2 text-blue-600 transition-colors duration-200 rounded-full hover:text-blue-800 hover:bg-blue-50 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2"
|
||||||
onClick={() => handleDownloadTodoElExpediente(ped.id, ped.pedimento_app)}
|
onClick={() => handleDownloadTodoElExpediente(ped.id, ped.pedimento_app)}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ export default function LandingAnimated() {
|
|||||||
message: ''
|
message: ''
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const currentYear = new Date().getFullYear();
|
||||||
const observerRef = useRef(null);
|
const observerRef = useRef(null);
|
||||||
const sectionsRef = useRef({});
|
const sectionsRef = useRef({});
|
||||||
|
|
||||||
@@ -101,7 +102,7 @@ export default function LandingAnimated() {
|
|||||||
|
|
||||||
// Estadísticas animadas
|
// Estadísticas animadas
|
||||||
const stats = [
|
const stats = [
|
||||||
{ number: '500+', label: 'Agentes Aduanales', icon: '🏢' },
|
{ number: '350+', label: 'Clientes', icon: '🏢' },
|
||||||
{ number: '15,000+', label: 'Pedimentos Procesados', icon: '📋' },
|
{ number: '15,000+', label: 'Pedimentos Procesados', icon: '📋' },
|
||||||
{ number: '99.9%', label: 'Uptime Garantizado', icon: '⚡' },
|
{ number: '99.9%', label: 'Uptime Garantizado', icon: '⚡' },
|
||||||
{ number: '24/7', label: 'Soporte Especializado', icon: '🛡️' }
|
{ number: '24/7', label: 'Soporte Especializado', icon: '🛡️' }
|
||||||
@@ -115,24 +116,31 @@ export default function LandingAnimated() {
|
|||||||
? 'bg-white/95 backdrop-blur-md shadow-lg border-b border-gray-200'
|
? 'bg-white/95 backdrop-blur-md shadow-lg border-b border-gray-200'
|
||||||
: 'bg-transparent'
|
: 'bg-transparent'
|
||||||
}`}>
|
}`}>
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||||
<div className="flex justify-between items-center py-4">
|
<div className="flex items-center justify-between py-4">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<div className="flex-shrink-0">
|
<div className="flex-shrink-0">
|
||||||
<h1 className="text-2xl font-bold">
|
<h1 className="text-2xl font-bold">
|
||||||
<span
|
<span
|
||||||
className="bg-clip-text text-transparent"
|
className="text-transparent bg-clip-text"
|
||||||
style={{
|
style={{
|
||||||
background: `linear-gradient(to right, #1B2A41, #4DA6FF)`,
|
color: isScrolled
|
||||||
WebkitBackgroundClip: 'text',
|
? 'transparent'
|
||||||
WebkitTextFillColor: 'transparent'
|
: '#FFFFFF',
|
||||||
|
background: isScrolled
|
||||||
|
? 'linear-gradient(to right, #1B2A41, #4DA6FF)'
|
||||||
|
: 'none',
|
||||||
|
WebkitBackgroundClip: isScrolled ? 'text' : 'unset',
|
||||||
|
WebkitTextFillColor: isScrolled ? 'transparent' : '#FFFFFF',
|
||||||
|
backgroundClip: isScrolled ? 'text' : 'unset'
|
||||||
}}
|
}}
|
||||||
|
|
||||||
>
|
>
|
||||||
EFC
|
EFC
|
||||||
</span>
|
</span>
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<nav className="hidden md:flex ml-10 space-x-8">
|
<nav className="hidden ml-10 space-x-8 md:flex">
|
||||||
{[
|
{[
|
||||||
{ id: 'inicio', label: 'Inicio' },
|
{ id: 'inicio', label: 'Inicio' },
|
||||||
{ id: 'estadisticas', label: 'Confianza' },
|
{ id: 'estadisticas', label: 'Confianza' },
|
||||||
@@ -141,36 +149,52 @@ export default function LandingAnimated() {
|
|||||||
{ id: 'precios', label: 'Precios' },
|
{ id: 'precios', label: 'Precios' },
|
||||||
{ id: 'contacto', label: 'Contacto' }
|
{ id: 'contacto', label: 'Contacto' }
|
||||||
].map((item) => (
|
].map((item) => (
|
||||||
<button
|
<button
|
||||||
key={item.id}
|
key={item.id}
|
||||||
onClick={() => scrollToSection(item.id)}
|
onClick={() => scrollToSection(item.id)}
|
||||||
className={`relative text-sm font-medium transition-all duration-300 hover:scale-105 group`}
|
className={`relative text-sm font-medium transition-all duration-300 hover:scale-105 group`}
|
||||||
style={{
|
style={{
|
||||||
color: activeSection === item.id
|
color: item.id === 'inicio'
|
||||||
? '#1B2A41'
|
? (isScrolled
|
||||||
: isScrolled
|
? (activeSection === 'inicio' ? '#1B2A41' : '#333333')
|
||||||
? '#333333'
|
: (activeSection === 'inicio' ? 'white' : 'white'))
|
||||||
: 'white'
|
: (activeSection === item.id
|
||||||
}}
|
? '#1B2A41'
|
||||||
onMouseEnter={(e) => {
|
: isScrolled
|
||||||
if (activeSection !== item.id) {
|
? '#333333'
|
||||||
e.target.style.color = isScrolled ? '#1B2A41' : '#4DA6FF';
|
: 'white')
|
||||||
}
|
}}
|
||||||
}}
|
onMouseEnter={(e) => {
|
||||||
onMouseLeave={(e) => {
|
if (activeSection !== item.id) {
|
||||||
if (activeSection !== item.id) {
|
if (item.id === 'inicio') {
|
||||||
e.target.style.color = isScrolled ? '#333333' : 'white';
|
e.target.style.color = isScrolled ? '#1B2A41' : '#4DA6FF';
|
||||||
}
|
} else {
|
||||||
}}
|
e.target.style.color = isScrolled ? '#1B2A41' : '#4DA6FF';
|
||||||
>
|
}
|
||||||
{item.label}
|
}
|
||||||
<span
|
}}
|
||||||
className={`absolute -bottom-1 left-0 h-0.5 transition-all duration-300 ${
|
onMouseLeave={(e) => {
|
||||||
activeSection === item.id ? 'w-full' : 'w-0 group-hover:w-full'
|
if (activeSection !== item.id) {
|
||||||
}`}
|
if (item.id === 'inicio') {
|
||||||
style={{ backgroundColor: '#1B2A41' }}
|
e.target.style.color = isScrolled ? '#333333' : 'white';
|
||||||
></span>
|
} else {
|
||||||
</button>
|
e.target.style.color = isScrolled ? '#333333' : 'white';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{item.label}
|
||||||
|
<span
|
||||||
|
className={`absolute -bottom-1 left-0 h-0.5 transition-all duration-300 ${
|
||||||
|
activeSection === item.id ? 'w-full' : 'w-0 group-hover:w-full'
|
||||||
|
}`}
|
||||||
|
style={{
|
||||||
|
backgroundColor: item.id === 'inicio' && !isScrolled && activeSection === 'inicio'
|
||||||
|
? 'white'
|
||||||
|
: '#1B2A41'
|
||||||
|
}}
|
||||||
|
></span>
|
||||||
|
</button>
|
||||||
))}
|
))}
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
@@ -196,21 +220,33 @@ export default function LandingAnimated() {
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
{/* Hero Section con efectos de gradiente animado */}
|
{/* Hero Section con efectos de gradiente animado */}
|
||||||
<section id="inicio" className="relative min-h-screen flex items-center overflow-hidden">
|
<section id="inicio" className="relative flex items-center min-h-screen overflow-hidden">
|
||||||
{/* Background con gradientes animados */}
|
{/* Background con imagen */}
|
||||||
<div
|
<div className="absolute inset-0">
|
||||||
className="absolute inset-0"
|
{/* Imagen de fondo */}
|
||||||
style={{
|
<div
|
||||||
background: 'linear-gradient(135deg, #1B2A41 0%, #263549 50%, #1976D2 100%)'
|
className="absolute inset-0 bg-center bg-no-repeat bg-cover"
|
||||||
}}
|
style={{
|
||||||
>
|
backgroundImage: 'url("images/empresaria001.webp")', // Cambia esta ruta
|
||||||
<div className="absolute inset-0 bg-gradient-to-t from-black/20 to-transparent"></div>
|
backgroundColor: '#1B2A41', // Color de respaldo
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{/* Overlay para oscurecer la imagen y mejorar legibilidad */}
|
||||||
|
<div
|
||||||
|
className="absolute inset-0"
|
||||||
|
style={{
|
||||||
|
background: 'linear-gradient(to bottom, rgba(27, 42, 65, 0.85), rgba(27, 42, 65, 0.7))',
|
||||||
|
}}
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Efectos adicionales */}
|
||||||
<div className="absolute inset-0 opacity-20">
|
<div className="absolute inset-0 opacity-20">
|
||||||
<div className="absolute inset-0 bg-gradient-to-r from-transparent via-white/5 to-transparent animate-pulse"></div>
|
<div className="absolute inset-0 bg-gradient-to-r from-transparent via-white/5 to-transparent animate-pulse"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-32 text-center">
|
<div className="relative px-4 py-32 mx-auto text-center max-w-7xl sm:px-6 lg:px-8">
|
||||||
<div className="space-y-8">
|
<div className="space-y-8">
|
||||||
<h1
|
<h1
|
||||||
data-animate="hero-title"
|
data-animate="hero-title"
|
||||||
@@ -222,7 +258,7 @@ export default function LandingAnimated() {
|
|||||||
>
|
>
|
||||||
<span className="block">
|
<span className="block">
|
||||||
<span
|
<span
|
||||||
className="bg-clip-text text-transparent"
|
className="text-transparent bg-clip-text"
|
||||||
style={{
|
style={{
|
||||||
background: 'linear-gradient(to right, white, #64B5F6)',
|
background: 'linear-gradient(to right, white, #64B5F6)',
|
||||||
WebkitBackgroundClip: 'text',
|
WebkitBackgroundClip: 'text',
|
||||||
@@ -233,7 +269,7 @@ export default function LandingAnimated() {
|
|||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
className="block text-3xl sm:text-4xl md:text-5xl mt-4 bg-clip-text text-transparent"
|
className="block mt-4 text-3xl text-transparent sm:text-4xl md:text-5xl bg-clip-text"
|
||||||
style={{
|
style={{
|
||||||
background: 'linear-gradient(to right, #64B5F6, white)',
|
background: 'linear-gradient(to right, #64B5F6, white)',
|
||||||
WebkitBackgroundClip: 'text',
|
WebkitBackgroundClip: 'text',
|
||||||
@@ -243,7 +279,7 @@ export default function LandingAnimated() {
|
|||||||
Para Agentes Aduanales
|
Para Agentes Aduanales
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
className="block text-3xl sm:text-4xl md:text-5xl bg-clip-text text-transparent"
|
className="block text-3xl text-transparent sm:text-4xl md:text-5xl bg-clip-text"
|
||||||
style={{
|
style={{
|
||||||
background: 'linear-gradient(to right, white, #64B5F6)',
|
background: 'linear-gradient(to right, white, #64B5F6)',
|
||||||
WebkitBackgroundClip: 'text',
|
WebkitBackgroundClip: 'text',
|
||||||
@@ -264,8 +300,8 @@ export default function LandingAnimated() {
|
|||||||
style={{ color: '#64B5F6' }}
|
style={{ color: '#64B5F6' }}
|
||||||
>
|
>
|
||||||
La plataforma líder desarrollada por
|
La plataforma líder desarrollada por
|
||||||
<span className="font-bold text-white"> @AduanaSoft</span> para
|
<span className="font-bold text-white"> Aduanasoft®</span> para
|
||||||
<span className="font-semibold" style={{ color: '#FF9800' }}> digitalizar y optimizar</span>
|
<span className="font-semibold" style={{ color: '#FFFFFF' }}> digitalizar y optimizar</span>
|
||||||
{' '}todos tus procesos de comercio exterior con tecnología de vanguardia
|
{' '}todos tus procesos de comercio exterior con tecnología de vanguardia
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@@ -279,7 +315,7 @@ export default function LandingAnimated() {
|
|||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
to="/login"
|
to="/login"
|
||||||
className="group inline-flex items-center px-8 py-4 text-lg font-semibold rounded-full transition-all duration-300 shadow-2xl hover:shadow-3xl transform hover:-translate-y-1 hover:scale-105"
|
className="inline-flex items-center px-8 py-4 text-lg font-semibold transition-all duration-300 transform rounded-full shadow-2xl group hover:shadow-3xl hover:-translate-y-1 hover:scale-105"
|
||||||
style={{
|
style={{
|
||||||
color: '#1B2A41',
|
color: '#1B2A41',
|
||||||
background: 'linear-gradient(to right, white, #F2F4F7)'
|
background: 'linear-gradient(to right, white, #F2F4F7)'
|
||||||
@@ -292,15 +328,15 @@ export default function LandingAnimated() {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<span>Comenzar Ahora</span>
|
<span>Comenzar Ahora</span>
|
||||||
<svg className="ml-2 w-5 h-5 group-hover:translate-x-1 transition-transform duration-200" fill="currentColor" viewBox="0 0 20 20">
|
<svg className="w-5 h-5 ml-2 transition-transform duration-200 group-hover:translate-x-1" fill="currentColor" viewBox="0 0 20 20">
|
||||||
<path fillRule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clipRule="evenodd" />
|
<path fillRule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clipRule="evenodd" />
|
||||||
</svg>
|
</svg>
|
||||||
</Link>
|
</Link>
|
||||||
<button
|
<button
|
||||||
onClick={() => scrollToSection('caracteristicas')}
|
onClick={() => scrollToSection('caracteristicas')}
|
||||||
className="group inline-flex items-center px-8 py-4 text-lg font-semibold rounded-full text-white bg-transparent border-2 border-white/30 hover:border-white hover:bg-white/10 transition-all duration-300 backdrop-blur-sm"
|
className="inline-flex items-center px-8 py-4 text-lg font-semibold text-white transition-all duration-300 bg-transparent border-2 rounded-full group border-white/30 hover:border-white hover:bg-white/10 backdrop-blur-sm"
|
||||||
>
|
>
|
||||||
<svg className="mr-2 w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h1m4 0h1m-6 4h.01M19 10a9 9 0 11-18 0 9 9 0 0118 0z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h1m4 0h1m-6 4h.01M19 10a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
</svg>
|
</svg>
|
||||||
<span>Ver Demo</span>
|
<span>Ver Demo</span>
|
||||||
@@ -308,11 +344,11 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Floating cards con efectos */}
|
{/* Floating cards con efectos */}
|
||||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 max-w-4xl mx-auto">
|
<div className="grid max-w-4xl grid-cols-1 gap-6 mx-auto md:grid-cols-3">
|
||||||
{[
|
{[
|
||||||
{ icon: '🚀', title: 'Rápido', desc: 'Procesamiento instantáneo' },
|
{ icon: '🚀', title: 'Rápido', desc: 'Procesamiento instantáneo' },
|
||||||
{ icon: '🔒', title: 'Seguro', desc: 'Cifrado de nivel bancario' },
|
{ icon: '🔒', title: 'Seguro', desc: 'Cifrado de nivel bancario' },
|
||||||
{ icon: '📊', title: 'Inteligente', desc: 'IA para optimización' }
|
{ icon: '📊', title: 'Inteligente', desc: 'IA para optimización' },
|
||||||
].map((feature, index) => (
|
].map((feature, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
@@ -324,8 +360,8 @@ export default function LandingAnimated() {
|
|||||||
}`}
|
}`}
|
||||||
style={{ transitionDelay: `${700 + index * 200}ms` }}
|
style={{ transitionDelay: `${700 + index * 200}ms` }}
|
||||||
>
|
>
|
||||||
<div className="text-4xl mb-3">{feature.icon}</div>
|
<div className="mb-3 text-4xl">{feature.icon}</div>
|
||||||
<h3 className="text-white font-semibold text-lg mb-2">{feature.title}</h3>
|
<h3 className="mb-2 text-lg font-semibold text-white">{feature.title}</h3>
|
||||||
<p className="text-sm" style={{ color: '#64B5F6' }}>{feature.desc}</p>
|
<p className="text-sm" style={{ color: '#64B5F6' }}>{feature.desc}</p>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
@@ -334,10 +370,10 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Scroll indicator animado */}
|
{/* Scroll indicator animado */}
|
||||||
<div className="absolute bottom-8 left-1/2 transform -translate-x-1/2 animate-bounce">
|
<div className="absolute transform -translate-x-1/2 bottom-8 left-1/2 animate-bounce">
|
||||||
<button
|
<button
|
||||||
onClick={() => scrollToSection('estadisticas')}
|
onClick={() => scrollToSection('estadisticas')}
|
||||||
className="text-white/70 hover:text-white transition-colors duration-200"
|
className="transition-colors duration-200 text-white/70 hover:text-white"
|
||||||
>
|
>
|
||||||
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
|
||||||
@@ -348,7 +384,7 @@ export default function LandingAnimated() {
|
|||||||
|
|
||||||
{/* Sección de Estadísticas y Confianza */}
|
{/* Sección de Estadísticas y Confianza */}
|
||||||
<section id="estadisticas" className="py-20" style={{ background: 'linear-gradient(to right, #F2F4F7, white)' }}>
|
<section id="estadisticas" className="py-20" style={{ background: 'linear-gradient(to right, #F2F4F7, white)' }}>
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||||
<div
|
<div
|
||||||
data-animate="stats-header"
|
data-animate="stats-header"
|
||||||
className={`text-center mb-16 transition-all duration-1000 ${
|
className={`text-center mb-16 transition-all duration-1000 ${
|
||||||
@@ -357,17 +393,17 @@ export default function LandingAnimated() {
|
|||||||
: 'opacity-0 translate-y-10'
|
: 'opacity-0 translate-y-10'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<h2 className="text-4xl font-extrabold mb-4" style={{ color: '#333333' }}>
|
<h2 className="mb-4 text-4xl font-extrabold" style={{ color: '#333333' }}>
|
||||||
Más de <span style={{ color: '#1B2A41' }}>500 empresas</span> confían en nosotros
|
Más de <span style={{ color: '#1B2A41' }}>350 empresas</span> confían en nosotros
|
||||||
</h2>
|
</h2>
|
||||||
<p className="text-xl max-w-3xl mx-auto" style={{ color: '#7A7A7A' }}>
|
<p className="max-w-3xl mx-auto text-xl" style={{ color: '#7A7A7A' }}>
|
||||||
Desarrollado por <span className="font-bold" style={{ color: '#1B2A41' }}>@AduanaSoft</span>,
|
Desarrollado por <span className="font-bold" style={{ color: '#1B2A41' }}>Aduanasoft®</span>,
|
||||||
líderes en tecnología aduanal con más de 10 años de experiencia
|
líderes en tecnología aduanal con más de 29 años de experiencia
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Stats con animaciones */}
|
{/* Stats con animaciones */}
|
||||||
<div className="grid grid-cols-2 lg:grid-cols-4 gap-8 mb-16">
|
<div className="grid grid-cols-2 gap-8 mb-16 lg:grid-cols-4">
|
||||||
{stats.map((stat, index) => (
|
{stats.map((stat, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
@@ -379,8 +415,8 @@ export default function LandingAnimated() {
|
|||||||
}`}
|
}`}
|
||||||
style={{ transitionDelay: `${index * 200}ms` }}
|
style={{ transitionDelay: `${index * 200}ms` }}
|
||||||
>
|
>
|
||||||
<div className="text-4xl mb-4 animate-pulse">{stat.icon}</div>
|
<div className="mb-4 text-4xl animate-pulse">{stat.icon}</div>
|
||||||
<div className="text-3xl font-bold mb-2" style={{ color: '#1B2A41' }}>{stat.number}</div>
|
<div className="mb-2 text-3xl font-bold" style={{ color: '#1B2A41' }}>{stat.number}</div>
|
||||||
<div className="font-medium" style={{ color: '#7A7A7A' }}>{stat.label}</div>
|
<div className="font-medium" style={{ color: '#7A7A7A' }}>{stat.label}</div>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
@@ -396,18 +432,18 @@ export default function LandingAnimated() {
|
|||||||
}`}
|
}`}
|
||||||
style={{ background: 'linear-gradient(to right, #1B2A41, #263549)' }}
|
style={{ background: 'linear-gradient(to right, #1B2A41, #263549)' }}
|
||||||
>
|
>
|
||||||
<div className="grid md:grid-cols-2 gap-8 items-center">
|
<div className="grid items-center gap-8 md:grid-cols-2">
|
||||||
<div>
|
<div>
|
||||||
<h3 className="text-3xl font-bold mb-6">Acerca de AduanaSoft</h3>
|
<h3 className="mb-6 text-3xl font-bold">Acerca de Aduanasoft</h3>
|
||||||
<div className="space-y-4 text-indigo-100">
|
<div className="space-y-4 text-indigo-100">
|
||||||
{[
|
{[
|
||||||
"10+ años especializados en software aduanal",
|
"29+ años especializados en software aduanal",
|
||||||
"Equipo experto en comercio exterior y tecnología",
|
"Equipo experto en comercio exterior y tecnología",
|
||||||
"Certificación SAT y cumplimiento normativo total",
|
"Certificación SAT y cumplimiento normativo total",
|
||||||
"Soporte 24/7 con especialistas aduanales"
|
"Soporte 24/7 con especialistas aduanales"
|
||||||
].map((item, idx) => (
|
].map((item, idx) => (
|
||||||
<div key={idx} className="flex items-start space-x-3">
|
<div key={idx} className="flex items-start space-x-3">
|
||||||
<div className="flex-shrink-0 w-6 h-6 bg-white/20 rounded-full flex items-center justify-center mt-1">
|
<div className="flex items-center justify-center flex-shrink-0 w-6 h-6 mt-1 rounded-full bg-white/20">
|
||||||
<svg className="w-3 h-3" fill="currentColor" viewBox="0 0 20 20">
|
<svg className="w-3 h-3" fill="currentColor" viewBox="0 0 20 20">
|
||||||
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||||
</svg>
|
</svg>
|
||||||
@@ -418,9 +454,9 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="bg-white/10 backdrop-blur-md rounded-2xl p-8 border border-white/20">
|
<div className="p-8 border bg-white/10 backdrop-blur-md rounded-2xl border-white/20">
|
||||||
<div className="text-6xl mb-4">🏆</div>
|
<div className="mb-4 text-6xl">🏆</div>
|
||||||
<h4 className="text-2xl font-bold mb-2">Líder del Mercado</h4>
|
<h4 className="mb-2 text-2xl font-bold">Líder del Mercado</h4>
|
||||||
<p className="text-indigo-100">
|
<p className="text-indigo-100">
|
||||||
Reconocidos como la mejor solución tecnológica para agentes aduanales en México
|
Reconocidos como la mejor solución tecnológica para agentes aduanales en México
|
||||||
</p>
|
</p>
|
||||||
@@ -433,7 +469,7 @@ export default function LandingAnimated() {
|
|||||||
|
|
||||||
{/* Características con efectos interactivos */}
|
{/* Características con efectos interactivos */}
|
||||||
<section id="caracteristicas" className="py-20 bg-white">
|
<section id="caracteristicas" className="py-20 bg-white">
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||||
<div
|
<div
|
||||||
data-animate="features-header"
|
data-animate="features-header"
|
||||||
className={`text-center mb-16 transition-all duration-1000 ${
|
className={`text-center mb-16 transition-all duration-1000 ${
|
||||||
@@ -442,7 +478,7 @@ export default function LandingAnimated() {
|
|||||||
: 'opacity-0 translate-y-10'
|
: 'opacity-0 translate-y-10'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<h2 className="text-4xl font-extrabold text-gray-900 mb-4">
|
<h2 className="mb-4 text-4xl font-extrabold text-gray-900">
|
||||||
Soluciones Especializadas para Comercio Exterior
|
Soluciones Especializadas para Comercio Exterior
|
||||||
</h2>
|
</h2>
|
||||||
<p className="text-xl text-gray-600">
|
<p className="text-xl text-gray-600">
|
||||||
@@ -450,7 +486,7 @@ export default function LandingAnimated() {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8">
|
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3">
|
||||||
{[
|
{[
|
||||||
{
|
{
|
||||||
icon: '📋',
|
icon: '📋',
|
||||||
@@ -492,7 +528,7 @@ export default function LandingAnimated() {
|
|||||||
}`}>
|
}`}>
|
||||||
{feature.icon}
|
{feature.icon}
|
||||||
</div>
|
</div>
|
||||||
<h3 className="text-2xl font-bold mb-4 transition-colors duration-300" style={{
|
<h3 className="mb-4 text-2xl font-bold transition-colors duration-300" style={{
|
||||||
color: visibleElements.has(`feature-${index}`) ? '#1B2A41' : '#333333'
|
color: visibleElements.has(`feature-${index}`) ? '#1B2A41' : '#333333'
|
||||||
}}>
|
}}>
|
||||||
{feature.title}
|
{feature.title}
|
||||||
@@ -503,7 +539,7 @@ export default function LandingAnimated() {
|
|||||||
<ul className="space-y-2">
|
<ul className="space-y-2">
|
||||||
{feature.features.map((item, idx) => (
|
{feature.features.map((item, idx) => (
|
||||||
<li key={idx} className="flex items-center text-sm" style={{ color: '#7A7A7A' }}>
|
<li key={idx} className="flex items-center text-sm" style={{ color: '#7A7A7A' }}>
|
||||||
<svg className="w-4 h-4 mr-2 flex-shrink-0" style={{ color: '#2E7D32' }} fill="currentColor" viewBox="0 0 20 20">
|
<svg className="flex-shrink-0 w-4 h-4 mr-2" style={{ color: '#2E7D32' }} fill="currentColor" viewBox="0 0 20 20">
|
||||||
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||||
</svg>
|
</svg>
|
||||||
{item}
|
{item}
|
||||||
@@ -514,7 +550,7 @@ export default function LandingAnimated() {
|
|||||||
<div className="p-4 transition-colors duration-300" style={{
|
<div className="p-4 transition-colors duration-300" style={{
|
||||||
background: 'linear-gradient(to right, #F2F4F7, #FFFFFF)'
|
background: 'linear-gradient(to right, #F2F4F7, #FFFFFF)'
|
||||||
}}>
|
}}>
|
||||||
<button className="font-semibold text-sm transition-colors duration-200" style={{
|
<button className="text-sm font-semibold transition-colors duration-200" style={{
|
||||||
color: '#1B2A41'
|
color: '#1B2A41'
|
||||||
}}>
|
}}>
|
||||||
Conocer más →
|
Conocer más →
|
||||||
@@ -528,7 +564,7 @@ export default function LandingAnimated() {
|
|||||||
|
|
||||||
{/* Precios */}
|
{/* Precios */}
|
||||||
<section id="precios" className="py-20 bg-white">
|
<section id="precios" className="py-20 bg-white">
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||||
<div
|
<div
|
||||||
data-animate="pricing-header"
|
data-animate="pricing-header"
|
||||||
className={`text-center mb-16 transition-all duration-1000 ${
|
className={`text-center mb-16 transition-all duration-1000 ${
|
||||||
@@ -537,7 +573,7 @@ export default function LandingAnimated() {
|
|||||||
: 'opacity-0 translate-y-10'
|
: 'opacity-0 translate-y-10'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<h2 className="text-4xl font-extrabold text-gray-900 mb-4">
|
<h2 className="mb-4 text-4xl font-extrabold text-gray-900">
|
||||||
Planes diseñados para tu crecimiento
|
Planes diseñados para tu crecimiento
|
||||||
</h2>
|
</h2>
|
||||||
<p className="text-xl text-gray-600">
|
<p className="text-xl text-gray-600">
|
||||||
@@ -545,7 +581,7 @@ export default function LandingAnimated() {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
<div className="grid grid-cols-1 gap-8 md:grid-cols-3">
|
||||||
{[
|
{[
|
||||||
{
|
{
|
||||||
name: 'Starter',
|
name: 'Starter',
|
||||||
@@ -614,8 +650,8 @@ export default function LandingAnimated() {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{plan.popular && (
|
{plan.popular && (
|
||||||
<div className="absolute -top-4 left-1/2 transform -translate-x-1/2">
|
<div className="absolute transform -translate-x-1/2 -top-4 left-1/2">
|
||||||
<span className="text-white px-4 py-2 rounded-full text-sm font-semibold animate-pulse" style={{
|
<span className="px-4 py-2 text-sm font-semibold text-white rounded-full animate-pulse" style={{
|
||||||
background: 'linear-gradient(to right, #1B2A41, #263549)'
|
background: 'linear-gradient(to right, #1B2A41, #263549)'
|
||||||
}}>
|
}}>
|
||||||
Más Popular
|
Más Popular
|
||||||
@@ -623,8 +659,8 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="text-center mb-8">
|
<div className="mb-8 text-center">
|
||||||
<h3 className="text-2xl font-bold mb-2" style={{ color: '#333333' }}>{plan.name}</h3>
|
<h3 className="mb-2 text-2xl font-bold" style={{ color: '#333333' }}>{plan.name}</h3>
|
||||||
<p className="mb-4" style={{ color: '#7A7A7A' }}>{plan.description}</p>
|
<p className="mb-4" style={{ color: '#7A7A7A' }}>{plan.description}</p>
|
||||||
{/*
|
{/*
|
||||||
<div className="mb-4">
|
<div className="mb-4">
|
||||||
@@ -634,10 +670,10 @@ export default function LandingAnimated() {
|
|||||||
*/}
|
*/}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul className="space-y-3 mb-8">
|
<ul className="mb-8 space-y-3">
|
||||||
{plan.features.map((feature, idx) => (
|
{plan.features.map((feature, idx) => (
|
||||||
<li key={idx} className="flex items-center">
|
<li key={idx} className="flex items-center">
|
||||||
<svg className="w-5 h-5 text-green-500 mr-3" fill="currentColor" viewBox="0 0 20 20">
|
<svg className="w-5 h-5 mr-3 text-green-500" fill="currentColor" viewBox="0 0 20 20">
|
||||||
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||||
</svg>
|
</svg>
|
||||||
<span className="text-gray-700">{feature}</span>
|
<span className="text-gray-700">{feature}</span>
|
||||||
@@ -662,32 +698,50 @@ export default function LandingAnimated() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Contacto */}
|
{/* Contacto */}
|
||||||
<section id="contacto" className="relative py-20 overflow-hidden" style={{
|
<section id="contacto" className="relative py-20 overflow-hidden">
|
||||||
background: 'linear-gradient(135deg, #1B2A41 0%, #263549 50%, #1B2A41 100%)'
|
{/* Background con imagen */}
|
||||||
}}>
|
<div className="absolute inset-0">
|
||||||
{/* Background Pattern */}
|
{/* Misma imagen de fondo que la sección inicio */}
|
||||||
<div className="absolute inset-0 opacity-10">
|
<div
|
||||||
<div className="absolute inset-0" style={{
|
className="absolute inset-0 bg-center bg-no-repeat bg-cover"
|
||||||
backgroundImage: `url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%234DA6FF' fillOpacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`
|
style={{
|
||||||
}}></div>
|
backgroundImage: 'url("images/sistemagestion002.webp")',
|
||||||
</div>
|
backgroundColor: '#1B2A41',
|
||||||
|
}}
|
||||||
{/* Floating elements */}
|
>
|
||||||
<div className="absolute top-10 left-10 w-20 h-20 rounded-full opacity-20" style={{ backgroundColor: '#4DA6FF' }}></div>
|
{/* Overlay más oscuro para mejor legibilidad en formulario */}
|
||||||
<div className="absolute bottom-10 right-10 w-32 h-32 rounded-full opacity-15" style={{ backgroundColor: '#F57C00' }}></div>
|
<div
|
||||||
<div className="absolute top-1/2 left-1/4 w-16 h-16 rounded-full opacity-10" style={{ backgroundColor: '#2E7D32' }}></div>
|
className="absolute inset-0"
|
||||||
|
style={{
|
||||||
<div className="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
background: 'linear-gradient(to bottom, rgba(27, 42, 65, 0.85), rgba(27, 42, 65, 0.7))',
|
||||||
<div className="text-center mb-16">
|
}}
|
||||||
<h2 className="text-4xl md:text-5xl font-extrabold text-white mb-6">
|
></div>
|
||||||
¿Listo para <span style={{ color: '#4DA6FF' }}>transformar</span> tu operación aduanal?
|
</div>
|
||||||
</h2>
|
|
||||||
<p className="text-xl md:text-2xl max-w-3xl mx-auto" style={{ color: '#64B5F6' }}>
|
{/* Background Pattern */}
|
||||||
Únete a más de 500 empresas que ya optimizaron sus procesos con EFC
|
<div className="absolute inset-0 opacity-10">
|
||||||
</p>
|
<div className="absolute inset-0" style={{
|
||||||
</div>
|
backgroundImage: `url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%234DA6FF' fillOpacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`
|
||||||
|
}}></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Floating elements */}
|
||||||
|
{/* <div className="absolute w-20 h-20 rounded-full top-10 left-10 opacity-20" style={{ backgroundColor: '#4DA6FF' }}></div>
|
||||||
|
<div className="absolute w-32 h-32 rounded-full bottom-10 right-10 opacity-15" style={{ backgroundColor: '#F57C00' }}></div>
|
||||||
|
<div className="absolute w-16 h-16 rounded-full top-1/2 left-1/4 opacity-10" style={{ backgroundColor: '#2E7D32' }}></div> */}
|
||||||
|
|
||||||
|
<div className="relative px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||||
|
<div className="mb-16 text-center">
|
||||||
|
<h2 className="mb-6 text-4xl font-extrabold text-white md:text-5xl">
|
||||||
|
¿Listo para <span style={{ color: '#4DA6FF' }}>transformar</span> tu operación aduanal?
|
||||||
|
</h2>
|
||||||
|
<p className="max-w-3xl mx-auto text-xl md:text-2xl" style={{ color: '#64B5F6' }}>
|
||||||
|
Únete a más de 350 empresas que ya optimizaron sus procesos con EFC
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-start">
|
<div className="grid items-start grid-cols-1 gap-12 lg:grid-cols-2">
|
||||||
<div
|
<div
|
||||||
data-animate="contact-info"
|
data-animate="contact-info"
|
||||||
className={`transition-all duration-1000 ${
|
className={`transition-all duration-1000 ${
|
||||||
@@ -697,9 +751,9 @@ export default function LandingAnimated() {
|
|||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
{/* Card de información de contacto */}
|
{/* Card de información de contacto */}
|
||||||
<div className="bg-white/10 backdrop-blur-md rounded-3xl p-8 border border-white/20">
|
<div className="p-8 border bg-white/10 backdrop-blur-md rounded-3xl border-white/20">
|
||||||
<div className="mb-8">
|
<div className="mb-8">
|
||||||
<h3 className="text-2xl font-bold text-white mb-4">
|
<h3 className="mb-4 text-2xl font-bold text-white">
|
||||||
Hablemos de tu proyecto
|
Hablemos de tu proyecto
|
||||||
</h3>
|
</h3>
|
||||||
<p className="text-lg" style={{ color: '#64B5F6' }}>
|
<p className="text-lg" style={{ color: '#64B5F6' }}>
|
||||||
@@ -728,15 +782,15 @@ export default function LandingAnimated() {
|
|||||||
subtitle: 'Visitas con cita previa'
|
subtitle: 'Visitas con cita previa'
|
||||||
}
|
}
|
||||||
].map((contact, idx) => (
|
].map((contact, idx) => (
|
||||||
<div key={idx} className="flex items-start space-x-4 p-4 rounded-xl bg-white/5 hover:bg-white/10 transition-all duration-300">
|
<div key={idx} className="flex items-start p-4 space-x-4 transition-all duration-300 rounded-xl bg-white/5 hover:bg-white/10">
|
||||||
<div className="w-14 h-14 flex items-center justify-center rounded-full" style={{ backgroundColor: '#4DA6FF' }}>
|
<div className="flex items-center justify-center rounded-full w-14 h-14" style={{ backgroundColor: '#4DA6FF' }}>
|
||||||
<svg className="w-7 h-7 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="text-white w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={contact.icon} />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={contact.icon} />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<h4 className="font-bold text-white text-lg">{contact.title}</h4>
|
<h4 className="text-lg font-bold text-white">{contact.title}</h4>
|
||||||
<p className="font-semibold mb-1" style={{ color: '#4DA6FF' }}>{contact.info}</p>
|
<p className="mb-1 font-semibold" style={{ color: '#4DA6FF' }}>{contact.info}</p>
|
||||||
<p className="text-sm" style={{ color: '#64B5F6' }}>{contact.subtitle}</p>
|
<p className="text-sm" style={{ color: '#64B5F6' }}>{contact.subtitle}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -744,10 +798,10 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Botón adicional para WhatsApp */}
|
{/* Botón adicional para WhatsApp */}
|
||||||
<div className="mt-8 pt-6 border-t border-white/20">
|
<div className="pt-6 mt-8 border-t border-white/20">
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
className="flex items-center justify-center w-full py-4 px-6 rounded-xl font-semibold text-white transition-all duration-300 transform hover:scale-105"
|
className="flex items-center justify-center w-full px-6 py-4 font-semibold text-white transition-all duration-300 transform rounded-xl hover:scale-105"
|
||||||
style={{
|
style={{
|
||||||
background: 'linear-gradient(45deg, #25D366, #128C7E)'
|
background: 'linear-gradient(45deg, #25D366, #128C7E)'
|
||||||
}}
|
}}
|
||||||
@@ -769,10 +823,10 @@ export default function LandingAnimated() {
|
|||||||
: 'opacity-0 translate-x-10'
|
: 'opacity-0 translate-x-10'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<h3 className="text-2xl font-bold mb-6" style={{ color: '#333333' }}>Solicita una demostración</h3>
|
<h3 className="mb-6 text-2xl font-bold" style={{ color: '#333333' }}>Solicita una demostración</h3>
|
||||||
<form onSubmit={handleContactSubmit} className="space-y-4">
|
<form onSubmit={handleContactSubmit} className="space-y-4">
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||||
Nombre completo
|
Nombre completo
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -780,7 +834,7 @@ export default function LandingAnimated() {
|
|||||||
required
|
required
|
||||||
value={contactForm.name}
|
value={contactForm.name}
|
||||||
onChange={(e) => setContactForm({...contactForm, name: e.target.value})}
|
onChange={(e) => setContactForm({...contactForm, name: e.target.value})}
|
||||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||||
style={{
|
style={{
|
||||||
focusRingColor: '#4DA6FF',
|
focusRingColor: '#4DA6FF',
|
||||||
outline: 'none'
|
outline: 'none'
|
||||||
@@ -792,7 +846,7 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||||
Email corporativo
|
Email corporativo
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -800,7 +854,7 @@ export default function LandingAnimated() {
|
|||||||
required
|
required
|
||||||
value={contactForm.email}
|
value={contactForm.email}
|
||||||
onChange={(e) => setContactForm({...contactForm, email: e.target.value})}
|
onChange={(e) => setContactForm({...contactForm, email: e.target.value})}
|
||||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||||
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
||||||
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
||||||
placeholder="tu@empresa.com"
|
placeholder="tu@empresa.com"
|
||||||
@@ -808,7 +862,7 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||||
Empresa
|
Empresa
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -816,7 +870,7 @@ export default function LandingAnimated() {
|
|||||||
required
|
required
|
||||||
value={contactForm.company}
|
value={contactForm.company}
|
||||||
onChange={(e) => setContactForm({...contactForm, company: e.target.value})}
|
onChange={(e) => setContactForm({...contactForm, company: e.target.value})}
|
||||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||||
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
||||||
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
||||||
placeholder="Nombre de tu empresa"
|
placeholder="Nombre de tu empresa"
|
||||||
@@ -824,14 +878,14 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||||
Mensaje
|
Mensaje
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
rows="4"
|
rows="4"
|
||||||
value={contactForm.message}
|
value={contactForm.message}
|
||||||
onChange={(e) => setContactForm({...contactForm, message: e.target.value})}
|
onChange={(e) => setContactForm({...contactForm, message: e.target.value})}
|
||||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||||
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
||||||
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
||||||
placeholder="Cuéntanos sobre tu operación aduanal..."
|
placeholder="Cuéntanos sobre tu operación aduanal..."
|
||||||
@@ -860,11 +914,11 @@ export default function LandingAnimated() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Footer */}
|
{/* Footer */}
|
||||||
<footer className="text-white py-12" style={{ backgroundColor: '#1B2A41' }}>
|
<footer className="py-12 text-white" style={{ backgroundColor: '#1B2A41' }}>
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
<div className="grid grid-cols-1 gap-8 md:grid-cols-4">
|
||||||
<div className="col-span-1 md:col-span-2">
|
<div className="col-span-1 md:col-span-2">
|
||||||
<h3 className="text-2xl font-bold mb-4">
|
<h3 className="mb-4 text-2xl font-bold">
|
||||||
<span style={{
|
<span style={{
|
||||||
background: 'linear-gradient(to right, #4DA6FF, #64B5F6)',
|
background: 'linear-gradient(to right, #4DA6FF, #64B5F6)',
|
||||||
WebkitBackgroundClip: 'text',
|
WebkitBackgroundClip: 'text',
|
||||||
@@ -873,13 +927,13 @@ export default function LandingAnimated() {
|
|||||||
EFC
|
EFC
|
||||||
</span>
|
</span>
|
||||||
</h3>
|
</h3>
|
||||||
<p className="mb-2 max-w-md" style={{ color: '#7A7A7A' }}>
|
{/* <p className="max-w-md mb-2" style={{ color: '#7A7A7A' }}>
|
||||||
Uso correcto <span className="font-semibold" style={{ color: '#4DA6FF' }}>Aduanasoft®</span>
|
Uso correcto <span className="font-semibold" style={{ color: '#4DA6FF' }}>Aduanasoft®</span>
|
||||||
</p>
|
</p> */}
|
||||||
<ul className="mb-4 text-sm text-gray-300 space-y-1">
|
{/* <ul className="mb-4 space-y-1 text-sm text-gray-300">
|
||||||
<li><span className="font-bold text-white">+350</span> clientes en todo el país</li>
|
<li><span className="font-bold text-white">+350</span> clientes en todo el país</li>
|
||||||
<li><span className="font-bold text-white">29 años</span> de experiencia</li>
|
<li><span className="font-bold text-white">29 años</span> de experiencia</li>
|
||||||
</ul>
|
</ul> */}
|
||||||
<div className="flex space-x-4">
|
<div className="flex space-x-4">
|
||||||
<a href="https://www.facebook.com/AduanaSoftMX" target="_blank" rel="noopener noreferrer" className="transition-colors duration-200" style={{ color: '#7A7A7A' }} onMouseEnter={e => e.target.style.color = 'white'} onMouseLeave={e => e.target.style.color = '#7A7A7A'} title="Facebook">
|
<a href="https://www.facebook.com/AduanaSoftMX" target="_blank" rel="noopener noreferrer" className="transition-colors duration-200" style={{ color: '#7A7A7A' }} onMouseEnter={e => e.target.style.color = 'white'} onMouseLeave={e => e.target.style.color = '#7A7A7A'} title="Facebook">
|
||||||
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M22.675 0h-21.35C.595 0 0 .592 0 1.326v21.348C0 23.408.595 24 1.325 24h11.495v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.797.143v3.24l-1.918.001c-1.504 0-1.797.715-1.797 1.763v2.313h3.587l-.467 3.622h-3.12V24h6.116C23.406 24 24 23.408 24 22.674V1.326C24 .592 23.406 0 22.675 0"/></svg>
|
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M22.675 0h-21.35C.595 0 0 .592 0 1.326v21.348C0 23.408.595 24 1.325 24h11.495v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.797.143v3.24l-1.918.001c-1.504 0-1.797.715-1.797 1.763v2.313h3.587l-.467 3.622h-3.12V24h6.116C23.406 24 24 23.408 24 22.674V1.326C24 .592 23.406 0 22.675 0"/></svg>
|
||||||
@@ -903,29 +957,29 @@ export default function LandingAnimated() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-semibold mb-4">Producto</h4>
|
<h4 className="mb-4 font-semibold">Producto</h4>
|
||||||
<ul className="space-y-2 text-gray-400">
|
<ul className="space-y-2 text-gray-400">
|
||||||
<li><button onClick={() => scrollToSection('caracteristicas')} className="hover:text-white transition-colors duration-200">Características</button></li>
|
<li><button onClick={() => scrollToSection('caracteristicas')} className="transition-colors duration-200 hover:text-white">Características</button></li>
|
||||||
<li><button onClick={() => scrollToSection('precios')} className="hover:text-white transition-colors duration-200">Precios</button></li>
|
<li><button onClick={() => scrollToSection('precios')} className="transition-colors duration-200 hover:text-white">Precios</button></li>
|
||||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Integraciónes</a></li>
|
<li><a href="#" className="transition-colors duration-200 hover:text-white">Integraciónes</a></li>
|
||||||
<li><a href="#" className="hover:text-white transition-colors duration-200">API</a></li>
|
<li><a href="#" className="transition-colors duration-200 hover:text-white">API</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-semibold mb-4">Soporte</h4>
|
<h4 className="mb-4 font-semibold">Soporte</h4>
|
||||||
<ul className="space-y-2 text-gray-400">
|
<ul className="space-y-2 text-gray-400">
|
||||||
<li><button onClick={() => scrollToSection('contacto')} className="hover:text-white transition-colors duration-200">Contacto</button></li>
|
<li><button onClick={() => scrollToSection('contacto')} className="transition-colors duration-200 hover:text-white">Contacto</button></li>
|
||||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Documentación</a></li>
|
<li><a href="#" className="transition-colors duration-200 hover:text-white">Documentación</a></li>
|
||||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Centro de Ayuda</a></li>
|
<li><a href="#" className="transition-colors duration-200 hover:text-white">Centro de Ayuda</a></li>
|
||||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Status</a></li>
|
<li><a href="#" className="transition-colors duration-200 hover:text-white">Status</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
|
<div className="pt-8 mt-8 text-center text-gray-400 border-t border-gray-800">
|
||||||
<p>
|
<p>
|
||||||
© 2025 EFC by <span className="font-semibold text-indigo-400">@AduanaSoft</span>.
|
© {currentYear} EFC by <span className="font-semibold text-white">Aduanasoft®</span>.
|
||||||
Todos los derechos reservados. | Solución especializada para Agentes Aduanales e Importadores.
|
Todos los derechos reservados. | Solución especializada para Agentes Aduanales e Importadores.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -23,11 +23,12 @@ export default function Login() {
|
|||||||
const apiUrl = import.meta.env.VITE_EFC_API_URL || '';
|
const apiUrl = import.meta.env.VITE_EFC_API_URL || '';
|
||||||
const token = data.access;
|
const token = data.access;
|
||||||
try {
|
try {
|
||||||
const res = await fetch(`${apiUrl}/user/users/me/`, {
|
const [resUser, resPerms] = await Promise.all([
|
||||||
headers: { 'Authorization': `Bearer ${token}` }
|
fetch(`${apiUrl}/user/users/me/`, { headers: { 'Authorization': `Bearer ${token}` } }),
|
||||||
});
|
fetch(`${apiUrl}/rbac/my-permissions/`, { headers: { 'Authorization': `Bearer ${token}` } }),
|
||||||
if (res.ok) {
|
]);
|
||||||
const user = await res.json();
|
if (resUser.ok) {
|
||||||
|
const user = await resUser.json();
|
||||||
if (user && user.username) {
|
if (user && user.username) {
|
||||||
localStorage.setItem('username', user.username);
|
localStorage.setItem('username', user.username);
|
||||||
if (user.email) localStorage.setItem('user_email', user.email);
|
if (user.email) localStorage.setItem('user_email', user.email);
|
||||||
@@ -38,6 +39,12 @@ export default function Login() {
|
|||||||
if (typeof user.is_importador !== 'undefined') localStorage.setItem('user_is_importador', String(user.is_importador));
|
if (typeof user.is_importador !== 'undefined') localStorage.setItem('user_is_importador', String(user.is_importador));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (resPerms.ok) {
|
||||||
|
const permsData = await resPerms.json();
|
||||||
|
if (permsData && permsData.permissions) {
|
||||||
|
localStorage.setItem('user_permissions', JSON.stringify(permsData.permissions));
|
||||||
|
}
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// Si falla, continuar igual
|
// Si falla, continuar igual
|
||||||
console.error('No se pudo guardar info de usuario en localStorage', e);
|
console.error('No se pudo guardar info de usuario en localStorage', e);
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,10 @@
|
|||||||
|
|
||||||
import React, { useEffect, useState, useRef } from 'react';
|
import React, { useEffect, useState, useRef } from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import { fetchTasks } from '../api/procesos.ts';
|
import { fetchTasks, ejecutarComando } from '../api/procesos.ts';
|
||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
// Modal para mostrar detalles del task
|
// Modal para mostrar detalles del task
|
||||||
const TaskDetailsModal = ({ task, onClose }) => {
|
const TaskDetailsModal = ({ task, onClose }) => {
|
||||||
@@ -42,9 +44,9 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50">
|
||||||
<div className="bg-white rounded-2xl p-6 max-w-3xl w-full mx-4 max-h-[90vh] overflow-y-auto">
|
<div className="bg-white rounded-2xl p-6 max-w-3xl w-full mx-4 max-h-[90vh] overflow-y-auto">
|
||||||
<div className="flex justify-between items-center mb-6">
|
<div className="flex items-center justify-between mb-6">
|
||||||
<h3 className="text-xl font-semibold text-gray-900">Detalles de la Tarea</h3>
|
<h3 className="text-xl font-semibold text-gray-900">Detalles de la Tarea</h3>
|
||||||
<button
|
<button
|
||||||
onClick={onClose}
|
onClick={onClose}
|
||||||
@@ -58,20 +60,20 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
|
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
{/* Información básica de la tarea */}
|
{/* Información básica de la tarea */}
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
|
||||||
<div className="bg-gray-50 p-4 rounded-xl">
|
<div className="p-4 bg-gray-50 rounded-xl">
|
||||||
<h4 className="text-sm font-medium text-gray-500">Task ID</h4>
|
<h4 className="text-sm font-medium text-gray-500">Task ID</h4>
|
||||||
<p className="mt-1 text-sm font-mono text-gray-900">{task.task_id}</p>
|
<p className="mt-1 font-mono text-sm text-gray-900">{task.task_id}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="bg-gray-50 p-4 rounded-xl">
|
<div className="p-4 bg-gray-50 rounded-xl">
|
||||||
<h4 className="text-sm font-medium text-gray-500">Estado</h4>
|
<h4 className="text-sm font-medium text-gray-500">Estado</h4>
|
||||||
<span className={`mt-2 inline-flex items-center px-2.5 py-1 rounded-lg text-xs font-semibold border ${getStatusColor(task.status)}`}>
|
<span className={`mt-2 inline-flex items-center px-2.5 py-1 rounded-lg text-xs font-semibold border ${getStatusColor(task.status)}`}>
|
||||||
{task.status}
|
{task.status}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="bg-gray-50 p-4 rounded-xl">
|
<div className="p-4 bg-gray-50 rounded-xl">
|
||||||
<h4 className="text-sm font-medium text-gray-500">Fecha</h4>
|
<h4 className="text-sm font-medium text-gray-500">Fecha</h4>
|
||||||
<p className="mt-1 text-sm text-gray-900">
|
<p className="mt-1 text-sm text-gray-900">
|
||||||
{new Date(task.timestamp).toLocaleString('es-MX', {
|
{new Date(task.timestamp).toLocaleString('es-MX', {
|
||||||
@@ -86,14 +88,14 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="bg-gray-50 p-4 rounded-xl">
|
<div className="p-4 bg-gray-50 rounded-xl">
|
||||||
<h4 className="text-sm font-medium text-gray-500">Progreso</h4>
|
<h4 className="text-sm font-medium text-gray-500">Progreso</h4>
|
||||||
<p className="mt-1 text-sm text-gray-900">{task.progress || 0}%</p>
|
<p className="mt-1 text-sm text-gray-900">{task.progress || 0}%</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Mensajes y Errores */}
|
{/* Mensajes y Errores */}
|
||||||
<div className="bg-gray-50 p-4 rounded-xl">
|
<div className="p-4 bg-gray-50 rounded-xl">
|
||||||
<h4 className="text-sm font-medium text-gray-500">Mensaje de la tarea</h4>
|
<h4 className="text-sm font-medium text-gray-500">Mensaje de la tarea</h4>
|
||||||
{(() => {
|
{(() => {
|
||||||
// Intentar parsear el mensaje si contiene un error HTTPException
|
// Intentar parsear el mensaje si contiene un error HTTPException
|
||||||
@@ -104,12 +106,12 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
const detail = JSON.parse(match[1].replace(/'/g, '"'));
|
const detail = JSON.parse(match[1].replace(/'/g, '"'));
|
||||||
return (
|
return (
|
||||||
<div className="mt-2 space-y-3">
|
<div className="mt-2 space-y-3">
|
||||||
<div className="bg-red-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-red-50">
|
||||||
<p className="text-sm text-red-700 font-medium">{detail.message}</p>
|
<p className="text-sm font-medium text-red-700">{detail.message}</p>
|
||||||
</div>
|
</div>
|
||||||
{detail.errors && detail.errors.length > 0 && (
|
{detail.errors && detail.errors.length > 0 && (
|
||||||
<div className="bg-red-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-red-50">
|
||||||
<ul className="list-disc pl-4 space-y-1">
|
<ul className="pl-4 space-y-1 list-disc">
|
||||||
{detail.errors.map((error, idx) => (
|
{detail.errors.map((error, idx) => (
|
||||||
<li key={idx} className="text-sm text-red-600">{error}</li>
|
<li key={idx} className="text-sm text-red-600">{error}</li>
|
||||||
))}
|
))}
|
||||||
@@ -117,14 +119,14 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{detail.data && (
|
{detail.data && (
|
||||||
<div className="bg-orange-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-orange-50">
|
||||||
<h5 className="text-sm font-medium text-orange-700 mb-2">Archivo de Error:</h5>
|
<h5 className="mb-2 text-sm font-medium text-orange-700">Archivo de Error:</h5>
|
||||||
<p className="text-sm text-orange-600 font-mono">{detail.data.error_file}</p>
|
<p className="font-mono text-sm text-orange-600">{detail.data.error_file}</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{detail.metadata && (
|
{detail.metadata && (
|
||||||
<div className="bg-blue-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-blue-50">
|
||||||
<h5 className="text-sm font-medium text-blue-700 mb-2">Información Adicional:</h5>
|
<h5 className="mb-2 text-sm font-medium text-blue-700">Información Adicional:</h5>
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
{Object.entries(detail.metadata).map(([key, value]) => (
|
{Object.entries(detail.metadata).map(([key, value]) => (
|
||||||
<div key={key} className="flex items-start gap-2">
|
<div key={key} className="flex items-start gap-2">
|
||||||
@@ -149,7 +151,7 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
{/* Mostrar detalles de error si existe */}
|
{/* Mostrar detalles de error si existe */}
|
||||||
{(task.status === 'FAILURE' || task.status === 'FAILED') && task.error && (
|
{(task.status === 'FAILURE' || task.status === 'FAILED') && task.error && (
|
||||||
<div className="mt-4 space-y-4">
|
<div className="mt-4 space-y-4">
|
||||||
<div className="border-t pt-4">
|
<div className="pt-4 border-t">
|
||||||
<h4 className="text-sm font-medium text-red-600">Detalles del Error</h4>
|
<h4 className="text-sm font-medium text-red-600">Detalles del Error</h4>
|
||||||
{(() => {
|
{(() => {
|
||||||
const errorDetail = parseError(task.error);
|
const errorDetail = parseError(task.error);
|
||||||
@@ -158,16 +160,16 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
<div className="mt-3 space-y-4">
|
<div className="mt-3 space-y-4">
|
||||||
{/* Mensaje principal del error */}
|
{/* Mensaje principal del error */}
|
||||||
{errorDetail.detail.message && (
|
{errorDetail.detail.message && (
|
||||||
<div className="bg-red-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-red-50">
|
||||||
<p className="text-sm text-red-700">{errorDetail.detail.message}</p>
|
<p className="text-sm text-red-700">{errorDetail.detail.message}</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Lista de errores específicos */}
|
{/* Lista de errores específicos */}
|
||||||
{errorDetail.detail.errors && errorDetail.detail.errors.length > 0 && (
|
{errorDetail.detail.errors && errorDetail.detail.errors.length > 0 && (
|
||||||
<div className="bg-red-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-red-50">
|
||||||
<h5 className="text-sm font-medium text-red-700 mb-2">Errores detectados:</h5>
|
<h5 className="mb-2 text-sm font-medium text-red-700">Errores detectados:</h5>
|
||||||
<ul className="list-disc pl-4 space-y-1">
|
<ul className="pl-4 space-y-1 list-disc">
|
||||||
{errorDetail.detail.errors.map((error, idx) => (
|
{errorDetail.detail.errors.map((error, idx) => (
|
||||||
<li key={idx} className="text-sm text-red-600">{error}</li>
|
<li key={idx} className="text-sm text-red-600">{error}</li>
|
||||||
))}
|
))}
|
||||||
@@ -177,8 +179,8 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
|
|
||||||
{/* Datos adicionales del error */}
|
{/* Datos adicionales del error */}
|
||||||
{errorDetail.detail.data && (
|
{errorDetail.detail.data && (
|
||||||
<div className="bg-orange-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-orange-50">
|
||||||
<h5 className="text-sm font-medium text-orange-700 mb-2">Archivos relacionados:</h5>
|
<h5 className="mb-2 text-sm font-medium text-orange-700">Archivos relacionados:</h5>
|
||||||
<div className="grid grid-cols-1 gap-2">
|
<div className="grid grid-cols-1 gap-2">
|
||||||
{Object.entries(errorDetail.detail.data).map(([key, value]) => (
|
{Object.entries(errorDetail.detail.data).map(([key, value]) => (
|
||||||
<div key={key} className="flex items-start gap-2">
|
<div key={key} className="flex items-start gap-2">
|
||||||
@@ -192,9 +194,9 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
|
|
||||||
{/* Metadata */}
|
{/* Metadata */}
|
||||||
{errorDetail.detail.metadata && (
|
{errorDetail.detail.metadata && (
|
||||||
<div className="bg-blue-50 p-3 rounded-lg">
|
<div className="p-3 rounded-lg bg-blue-50">
|
||||||
<h5 className="text-sm font-medium text-blue-700 mb-2">Metadata:</h5>
|
<h5 className="mb-2 text-sm font-medium text-blue-700">Metadata:</h5>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-2">
|
<div className="grid grid-cols-1 gap-2 md:grid-cols-2">
|
||||||
{Object.entries(errorDetail.detail.metadata).map(([key, value]) => (
|
{Object.entries(errorDetail.detail.metadata).map(([key, value]) => (
|
||||||
<div key={key} className="flex items-start gap-2">
|
<div key={key} className="flex items-start gap-2">
|
||||||
<span className="text-sm font-medium text-blue-600">{key}:</span>
|
<span className="text-sm font-medium text-blue-600">{key}:</span>
|
||||||
@@ -208,7 +210,7 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className="bg-red-50 p-3 rounded-lg mt-2">
|
<div className="p-3 mt-2 rounded-lg bg-red-50">
|
||||||
<p className="text-sm text-red-700">{task.error}</p>
|
<p className="text-sm text-red-700">{task.error}</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -220,7 +222,7 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
{/* Mensaje del resultado si existe */}
|
{/* Mensaje del resultado si existe */}
|
||||||
{task.result?.message && (
|
{task.result?.message && (
|
||||||
<>
|
<>
|
||||||
<h4 className="text-sm font-medium text-gray-500 mt-3">Mensaje del resultado</h4>
|
<h4 className="mt-3 text-sm font-medium text-gray-500">Mensaje del resultado</h4>
|
||||||
<p className="mt-1 text-sm text-gray-900">{task.result.message}</p>
|
<p className="mt-1 text-sm text-gray-900">{task.result.message}</p>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@@ -229,13 +231,13 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
{/* Detalles del resultado */}
|
{/* Detalles del resultado */}
|
||||||
{task.result?.data && (
|
{task.result?.data && (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<h4 className="text-lg font-medium text-gray-700 border-b pb-2">Detalles del Resultado</h4>
|
<h4 className="pb-2 text-lg font-medium text-gray-700 border-b">Detalles del Resultado</h4>
|
||||||
|
|
||||||
{/* Información del documento si existe */}
|
{/* Información del documento si existe */}
|
||||||
{task.result.data.data?.documento && (
|
{task.result.data.data?.documento && (
|
||||||
<div className="bg-blue-50 p-4 rounded-xl">
|
<div className="p-4 bg-blue-50 rounded-xl">
|
||||||
<h5 className="text-sm font-medium text-blue-700 mb-3">Información del Documento</h5>
|
<h5 className="mb-3 text-sm font-medium text-blue-700">Información del Documento</h5>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
|
||||||
<div>
|
<div>
|
||||||
<p className="text-xs font-medium text-blue-600">Número de Pedimento</p>
|
<p className="text-xs font-medium text-blue-600">Número de Pedimento</p>
|
||||||
<p className="text-sm text-blue-900">{task.result.data.data.documento.pedimento_numero}</p>
|
<p className="text-sm text-blue-900">{task.result.data.data.documento.pedimento_numero}</p>
|
||||||
@@ -258,9 +260,9 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
|
|
||||||
{/* Información de la partida si existe */}
|
{/* Información de la partida si existe */}
|
||||||
{task.result.data.data?.partida_update_response && (
|
{task.result.data.data?.partida_update_response && (
|
||||||
<div className="bg-indigo-50 p-4 rounded-xl">
|
<div className="p-4 bg-indigo-50 rounded-xl">
|
||||||
<h5 className="text-sm font-medium text-indigo-700 mb-3">Información de la Partida</h5>
|
<h5 className="mb-3 text-sm font-medium text-indigo-700">Información de la Partida</h5>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
|
||||||
<div>
|
<div>
|
||||||
<p className="text-xs font-medium text-indigo-600">Número de Partida</p>
|
<p className="text-xs font-medium text-indigo-600">Número de Partida</p>
|
||||||
<p className="text-sm text-indigo-900">{task.result.data.data.partida_update_response.numero_partida}</p>
|
<p className="text-sm text-indigo-900">{task.result.data.data.partida_update_response.numero_partida}</p>
|
||||||
@@ -277,9 +279,9 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
|
|
||||||
{/* Metadata si existe */}
|
{/* Metadata si existe */}
|
||||||
{task.result.data?.metadata && (
|
{task.result.data?.metadata && (
|
||||||
<div className="bg-gray-50 p-4 rounded-xl">
|
<div className="p-4 bg-gray-50 rounded-xl">
|
||||||
<h5 className="text-sm font-medium text-gray-700 mb-3">Metadata</h5>
|
<h5 className="mb-3 text-sm font-medium text-gray-700">Metadata</h5>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
|
||||||
{Object.entries(task.result.data.metadata).map(([key, value]) => (
|
{Object.entries(task.result.data.metadata).map(([key, value]) => (
|
||||||
<div key={key}>
|
<div key={key}>
|
||||||
<p className="text-xs font-medium text-gray-500">{key}</p>
|
<p className="text-xs font-medium text-gray-500">{key}</p>
|
||||||
@@ -298,7 +300,10 @@ const TaskDetailsModal = ({ task, onClose }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export default function Procesos() {
|
export default function Procesos() {
|
||||||
|
const { showMessage } = useNotification();
|
||||||
const [procesos, setProcesos] = useState([]);
|
const [procesos, setProcesos] = useState([]);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [error, setError] = useState('');
|
const [error, setError] = useState('');
|
||||||
@@ -347,6 +352,10 @@ export default function Procesos() {
|
|||||||
const [pedimentoPedimentoFilter, setPedimentoPedimentoFilter] = useState('');
|
const [pedimentoPedimentoFilter, setPedimentoPedimentoFilter] = useState('');
|
||||||
const [servicioFilter, setServicioFilter] = useState('');
|
const [servicioFilter, setServicioFilter] = useState('');
|
||||||
const [statusFilter, setStatusFilter] = useState('');
|
const [statusFilter, setStatusFilter] = useState('');
|
||||||
|
|
||||||
|
const [organizacionFilter, setOrganizacionFilter] = useState('');
|
||||||
|
const [organizaciones, setOrganizaciones] = useState([]);
|
||||||
|
const [loadingOrganizaciones, setLoadingOrganizaciones] = useState(false);
|
||||||
|
|
||||||
// Sorting
|
// Sorting
|
||||||
const [sortField, setSortField] = useState('');
|
const [sortField, setSortField] = useState('');
|
||||||
@@ -357,6 +366,7 @@ export default function Procesos() {
|
|||||||
pedimentoPedimentoFilter: '',
|
pedimentoPedimentoFilter: '',
|
||||||
statusFilter: '',
|
statusFilter: '',
|
||||||
servicioFilter: '',
|
servicioFilter: '',
|
||||||
|
organizacionFilter: '', // Añadir esta línea
|
||||||
sortField: '',
|
sortField: '',
|
||||||
sortOrder: 'asc'
|
sortOrder: 'asc'
|
||||||
});
|
});
|
||||||
@@ -370,6 +380,7 @@ export default function Procesos() {
|
|||||||
pedimentoPedimentoFilter,
|
pedimentoPedimentoFilter,
|
||||||
servicioFilter,
|
servicioFilter,
|
||||||
statusFilter,
|
statusFilter,
|
||||||
|
organizacionFilter, // Añadir esta línea
|
||||||
sortField,
|
sortField,
|
||||||
sortOrder
|
sortOrder
|
||||||
};
|
};
|
||||||
@@ -397,6 +408,7 @@ export default function Procesos() {
|
|||||||
if (pedimentoPedimentoFilter) filters['pedimento_app'] = pedimentoPedimentoFilter;
|
if (pedimentoPedimentoFilter) filters['pedimento_app'] = pedimentoPedimentoFilter;
|
||||||
if (servicioFilter) filters['servicio'] = servicioFilter;
|
if (servicioFilter) filters['servicio'] = servicioFilter;
|
||||||
if (statusFilter) filters['status'] = statusFilter;
|
if (statusFilter) filters['status'] = statusFilter;
|
||||||
|
if (organizacionFilter) filters['organizacion'] = organizacionFilter; // Añadir esta línea
|
||||||
if (sortField) {
|
if (sortField) {
|
||||||
// Mapear campos antiguos a nuevos si es necesario
|
// Mapear campos antiguos a nuevos si es necesario
|
||||||
const fieldMapping = {
|
const fieldMapping = {
|
||||||
@@ -422,10 +434,98 @@ export default function Procesos() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
fetchData();
|
fetchData();
|
||||||
}, [page, itemsPerPage, pedimentoPedimentoFilter, servicioFilter, statusFilter, sortField, sortOrder]);
|
}, [page, itemsPerPage, pedimentoPedimentoFilter, servicioFilter, statusFilter, organizacionFilter, sortField, sortOrder]);
|
||||||
|
|
||||||
|
const [showProcesosDropdown, setShowProcesosDropdown] = useState(false);
|
||||||
|
const [ejecutandoProceso, setEjecutandoProceso] = useState(false);
|
||||||
|
|
||||||
|
const handleEjecutarProcesamiento = async (params) => {
|
||||||
|
// Verificar si se ha seleccionado una organización
|
||||||
|
if (!organizacionFilter) {
|
||||||
|
showMessage('Debes seleccionar una organización antes de ejecutar el proceso', 'warning');
|
||||||
|
return; // Detener la ejecución
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
setEjecutandoProceso(true);
|
||||||
|
setShowProcesosDropdown(false);
|
||||||
|
|
||||||
|
// Agregar el ID de la organización a los parámetros
|
||||||
|
const paramsConOrganizacion = {
|
||||||
|
...params,
|
||||||
|
organizacionid: organizacionFilter // Solo necesitamos el ID
|
||||||
|
};
|
||||||
|
|
||||||
|
console.log('Ejecutando proceso con parámetros:', paramsConOrganizacion);
|
||||||
|
|
||||||
|
const resultado = await ejecutarComando(paramsConOrganizacion);
|
||||||
|
|
||||||
|
if (resultado.message) {
|
||||||
|
// Mostrar mensaje de éxito
|
||||||
|
showMessage(`${resultado.message}`, 'success');
|
||||||
|
|
||||||
|
// Recargar los datos después de 2 segundos
|
||||||
|
setTimeout(() => {
|
||||||
|
// Forzar recarga de datos
|
||||||
|
const currentFilters = {
|
||||||
|
pedimentoPedimentoFilter,
|
||||||
|
servicioFilter,
|
||||||
|
statusFilter,
|
||||||
|
sortField,
|
||||||
|
sortOrder
|
||||||
|
};
|
||||||
|
prevFiltersRef.current = { ...currentFilters };
|
||||||
|
// Esto activará el useEffect para recargar
|
||||||
|
setPage(prev => prev);
|
||||||
|
}, 2000);
|
||||||
|
} else if (resultado.error) {
|
||||||
|
showMessage(`Error: ${resultado.error}`, 'error');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
// console.error('Error al ejecutar procesamiento:', error);
|
||||||
|
showMessage(`Error: ${error.message}`, 'error');
|
||||||
|
} finally {
|
||||||
|
setEjecutandoProceso(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Agrega este efecto para cerrar el dropdown
|
||||||
|
useEffect(() => {
|
||||||
|
const handleClickOutside = (event) => {
|
||||||
|
if (showProcesosDropdown && !event.target.closest('.relative')) {
|
||||||
|
setShowProcesosDropdown(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
document.addEventListener('click', handleClickOutside);
|
||||||
|
return () => {
|
||||||
|
document.removeEventListener('click', handleClickOutside);
|
||||||
|
};
|
||||||
|
}, [showProcesosDropdown]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
async function fetchOrganizaciones() {
|
||||||
|
try {
|
||||||
|
setLoadingOrganizaciones(true);
|
||||||
|
const response = await fetchWithAuth(`${API_URL}/organization/organizaciones/`);
|
||||||
|
if (response.ok) {
|
||||||
|
const data = await response.json();
|
||||||
|
setOrganizaciones(data.results || []);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error al cargar organizaciones:', error);
|
||||||
|
} finally {
|
||||||
|
setLoadingOrganizaciones(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchOrganizaciones();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-gradient-to-br from-slate-50 via-blue-50 to-indigo-100 p-4 sm:p-6 lg:p-8">
|
<div className="min-h-screen p-4 bg-gradient-to-br from-slate-50 via-blue-50 to-indigo-100 sm:p-6 lg:p-8">
|
||||||
{/* Modal de detalles del task */}
|
{/* Modal de detalles del task */}
|
||||||
{selectedTask && (
|
{selectedTask && (
|
||||||
<TaskDetailsModal
|
<TaskDetailsModal
|
||||||
@@ -435,45 +535,45 @@ export default function Procesos() {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{loadingTask && (
|
{loadingTask && (
|
||||||
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50">
|
||||||
<div className="bg-white rounded-full p-4">
|
<div className="p-4 bg-white rounded-full">
|
||||||
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-600"></div>
|
<div className="w-8 h-8 border-b-2 border-blue-600 rounded-full animate-spin"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="max-w-7xl mx-auto">
|
<div className="mx-auto max-w-7xl">
|
||||||
{/* Header mejorado y responsivo */}
|
{/* Header mejorado y responsivo */}
|
||||||
<div className="mb-6 sm:mb-8 relative overflow-hidden rounded-3xl shadow-2xl bg-gradient-to-r from-blue-600 via-blue-700 to-blue-800 p-6 sm:p-8 flex items-center gap-4 sm:gap-6 animate-fadein-slideup opacity-0"
|
<div className="relative flex items-center gap-4 p-6 mb-6 overflow-hidden shadow-2xl opacity-0 sm:mb-8 rounded-3xl bg-gradient-to-r from-blue-600 via-blue-700 to-blue-800 sm:p-8 sm:gap-6 animate-fadein-slideup"
|
||||||
style={{ animation: 'fadein-slideup 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s forwards' }}>
|
style={{ animation: 'fadein-slideup 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s forwards' }}>
|
||||||
<div className="flex-shrink-0 bg-white/20 backdrop-blur-sm rounded-full p-3 sm:p-4 shadow-lg animate-bounce-slow">
|
<div className="flex-shrink-0 p-3 rounded-full shadow-lg bg-white/20 backdrop-blur-sm sm:p-4 animate-bounce-slow">
|
||||||
<svg className="h-8 w-8 sm:h-10 sm:w-10 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-8 h-8 text-white sm:h-10 sm:w-10" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-1 min-w-0">
|
<div className="flex-1 min-w-0">
|
||||||
<h1 className="text-2xl sm:text-3xl lg:text-4xl font-extrabold text-white tracking-tight mb-1 flex flex-col sm:flex-row sm:items-center gap-2">
|
<h1 className="flex flex-col gap-2 mb-1 text-2xl font-extrabold tracking-tight text-white sm:text-3xl lg:text-4xl sm:flex-row sm:items-center">
|
||||||
<span>Procesos del Sistema</span>
|
<span>Procesos del Sistema</span>
|
||||||
{count > 0 && (
|
{count > 0 && (
|
||||||
<span className="inline-block bg-white/20 backdrop-blur-sm text-white text-xs sm:text-sm font-semibold px-3 py-1 rounded-full shadow-lg animate-fade-in">
|
<span className="inline-block px-3 py-1 text-xs font-semibold text-white rounded-full shadow-lg bg-white/20 backdrop-blur-sm sm:text-sm animate-fade-in">
|
||||||
{count} procesos
|
{count} procesos
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-sm sm:text-lg text-blue-100 font-medium leading-relaxed">Estado actual de los procesos de la agencia aduanal</p>
|
<p className="text-sm font-medium leading-relaxed text-blue-100 sm:text-lg">Estado actual de los procesos de la agencia aduanal</p>
|
||||||
</div>
|
</div>
|
||||||
{/* Efectos decorativos de fondo modernos */}
|
{/* Efectos decorativos de fondo modernos */}
|
||||||
<div className="absolute -top-10 -right-10 opacity-20 pointer-events-none select-none">
|
<div className="absolute pointer-events-none select-none -top-10 -right-10 opacity-20">
|
||||||
<div className="w-32 h-32 bg-white/10 rounded-full blur-xl"></div>
|
<div className="w-32 h-32 rounded-full bg-white/10 blur-xl"></div>
|
||||||
</div>
|
</div>
|
||||||
<div className="absolute -bottom-6 -left-6 opacity-15 pointer-events-none select-none">
|
<div className="absolute pointer-events-none select-none -bottom-6 -left-6 opacity-15">
|
||||||
<div className="w-24 h-24 bg-white/10 rounded-full blur-lg"></div>
|
<div className="w-24 h-24 rounded-full bg-white/10 blur-lg"></div>
|
||||||
</div>
|
</div>
|
||||||
{/* Partículas flotantes */}
|
{/* Partículas flotantes */}
|
||||||
<div className="absolute inset-0 overflow-hidden pointer-events-none">
|
<div className="absolute inset-0 overflow-hidden pointer-events-none">
|
||||||
<div className="absolute top-1/4 left-1/4 w-2 h-2 bg-white/30 rounded-full animate-ping"></div>
|
<div className="absolute w-2 h-2 rounded-full top-1/4 left-1/4 bg-white/30 animate-ping"></div>
|
||||||
<div className="absolute top-3/4 right-1/3 w-1 h-1 bg-white/40 rounded-full animate-pulse"></div>
|
<div className="absolute w-1 h-1 rounded-full top-3/4 right-1/3 bg-white/40 animate-pulse"></div>
|
||||||
<div className="absolute top-1/2 right-1/4 w-3 h-3 bg-white/20 rounded-full animate-bounce"></div>
|
<div className="absolute w-3 h-3 rounded-full top-1/2 right-1/4 bg-white/20 animate-bounce"></div>
|
||||||
</div>
|
</div>
|
||||||
{/* Animaciones CSS */}
|
{/* Animaciones CSS */}
|
||||||
<style>{`
|
<style>{`
|
||||||
@@ -501,20 +601,20 @@ export default function Procesos() {
|
|||||||
`}</style>
|
`}</style>
|
||||||
</div>
|
</div>
|
||||||
{/* Contenido principal */}
|
{/* Contenido principal */}
|
||||||
<div className="bg-white rounded-3xl shadow-2xl border border-gray-100 p-4 sm:p-6 lg:p-8 animate-fadein-slideup opacity-0"
|
<div className="p-4 bg-white border border-gray-100 shadow-2xl opacity-0 rounded-3xl sm:p-6 lg:p-8 animate-fadein-slideup"
|
||||||
style={{ animation: 'fadein-slideup 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s forwards' }}>
|
style={{ animation: 'fadein-slideup 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s forwards' }}>
|
||||||
<div className="flex flex-col sm:flex-row sm:items-center justify-between mb-6 gap-4">
|
<div className="flex flex-col justify-between gap-4 mb-6 sm:flex-row sm:items-center">
|
||||||
<h2 className="text-xl sm:text-2xl font-bold text-gray-900 flex items-center gap-3">
|
<h2 className="flex items-center gap-3 text-xl font-bold text-gray-900 sm:text-2xl">
|
||||||
<div className="bg-gradient-to-br from-blue-500 to-blue-600 rounded-xl p-2 shadow-lg">
|
<div className="p-2 shadow-lg bg-gradient-to-br from-blue-500 to-blue-600 rounded-xl">
|
||||||
<svg className="w-5 h-5 sm:w-6 sm:h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-5 h-5 text-white sm:w-6 sm:h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
Procesamiento de Pedimentos
|
Procesamiento de Pedimentos
|
||||||
</h2>
|
</h2>
|
||||||
<div className="flex flex-col sm:flex-row gap-3">
|
<div className="flex flex-col gap-3 sm:flex-row">
|
||||||
{count > 0 && (
|
{count > 0 && (
|
||||||
<div className="bg-gradient-to-r from-blue-50 to-indigo-50 rounded-xl px-4 py-2 border border-blue-100">
|
<div className="px-4 py-2 border border-blue-100 bg-gradient-to-r from-blue-50 to-indigo-50 rounded-xl">
|
||||||
<span className="text-sm font-medium text-blue-700">Total de registros: </span>
|
<span className="text-sm font-medium text-blue-700">Total de registros: </span>
|
||||||
<span className="text-lg font-bold text-blue-800">{count}</span>
|
<span className="text-lg font-bold text-blue-800">{count}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -525,16 +625,16 @@ export default function Procesos() {
|
|||||||
|
|
||||||
|
|
||||||
{/* Filtros responsivos mejorados */}
|
{/* Filtros responsivos mejorados */}
|
||||||
<div className="mb-6 bg-gradient-to-r from-gray-50 to-slate-50 rounded-2xl p-4 sm:p-6 border border-gray-100">
|
<div className="p-4 mb-6 border border-gray-100 bg-gradient-to-r from-gray-50 to-slate-50 rounded-2xl sm:p-6">
|
||||||
<h3 className="text-lg font-semibold text-gray-800 mb-4 flex items-center gap-2">
|
<h3 className="flex items-center gap-2 mb-4 text-lg font-semibold text-gray-800">
|
||||||
<svg className="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.414A1 1 0 013 6.707V4z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.414A1 1 0 013 6.707V4z" />
|
||||||
</svg>
|
</svg>
|
||||||
Filtros de búsqueda
|
Filtros de búsqueda
|
||||||
</h3>
|
</h3>
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
|
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<label className="text-sm font-semibold text-gray-700 flex items-center gap-2">
|
<label className="flex items-center gap-2 text-sm font-semibold text-gray-700">
|
||||||
<div className="w-2 h-2 bg-blue-500 rounded-full"></div>
|
<div className="w-2 h-2 bg-blue-500 rounded-full"></div>
|
||||||
Pedimento
|
Pedimento
|
||||||
</label>
|
</label>
|
||||||
@@ -546,12 +646,12 @@ export default function Procesos() {
|
|||||||
setPage(1);
|
setPage(1);
|
||||||
}}
|
}}
|
||||||
placeholder="Buscar por pedimento..."
|
placeholder="Buscar por pedimento..."
|
||||||
className="w-full border border-gray-300 rounded-xl px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
className="w-full px-4 py-3 text-sm transition-all duration-200 bg-white border border-gray-300 shadow-sm rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 hover:shadow-md"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<label className="text-sm font-semibold text-gray-700 flex items-center gap-2">
|
<label className="flex items-center gap-2 text-sm font-semibold text-gray-700">
|
||||||
<div className="w-2 h-2 bg-purple-500 rounded-full"></div>
|
<div className="w-2 h-2 bg-purple-500 rounded-full"></div>
|
||||||
Estado
|
Estado
|
||||||
</label>
|
</label>
|
||||||
@@ -561,7 +661,7 @@ export default function Procesos() {
|
|||||||
setStatusFilter(e.target.value);
|
setStatusFilter(e.target.value);
|
||||||
setPage(1);
|
setPage(1);
|
||||||
}}
|
}}
|
||||||
className="w-full border border-gray-300 rounded-xl px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
className="w-full px-4 py-3 text-sm transition-all duration-200 bg-white border border-gray-300 shadow-sm rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 hover:shadow-md"
|
||||||
>
|
>
|
||||||
<option value="">Todos los estados</option>
|
<option value="">Todos los estados</option>
|
||||||
<option value="submitted">Enviado</option>
|
<option value="submitted">Enviado</option>
|
||||||
@@ -572,7 +672,7 @@ export default function Procesos() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<label className="text-sm font-semibold text-gray-700 flex items-center gap-2">
|
<label className="flex items-center gap-2 text-sm font-semibold text-gray-700">
|
||||||
<div className="w-2 h-2 bg-orange-500 rounded-full"></div>
|
<div className="w-2 h-2 bg-orange-500 rounded-full"></div>
|
||||||
Servicio
|
Servicio
|
||||||
</label>
|
</label>
|
||||||
@@ -582,7 +682,7 @@ export default function Procesos() {
|
|||||||
setServicioFilter(e.target.value);
|
setServicioFilter(e.target.value);
|
||||||
setPage(1);
|
setPage(1);
|
||||||
}}
|
}}
|
||||||
className="w-full border border-gray-300 rounded-xl px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm transition-all duration-200 hover:shadow-md"
|
className="w-full px-4 py-3 text-sm transition-all duration-200 bg-white border border-gray-300 shadow-sm rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 hover:shadow-md"
|
||||||
>
|
>
|
||||||
<option value="">Todos los servicios</option>
|
<option value="">Todos los servicios</option>
|
||||||
<option value="1">Estado de pedimento</option>
|
<option value="1">Estado de pedimento</option>
|
||||||
@@ -596,39 +696,151 @@ export default function Procesos() {
|
|||||||
<option value="9">Acuse Cove</option>
|
<option value="9">Acuse Cove</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<label className="flex items-center gap-2 text-sm font-semibold text-gray-700">
|
||||||
|
<div className="w-2 h-2 bg-teal-500 rounded-full"></div>
|
||||||
|
Organización
|
||||||
|
</label>
|
||||||
|
<select
|
||||||
|
className="w-full px-4 py-3 text-sm transition-all duration-200 bg-white border border-gray-300 shadow-sm rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 hover:shadow-md"
|
||||||
|
disabled={loadingOrganizaciones}
|
||||||
|
value={organizacionFilter}
|
||||||
|
onChange={e => {
|
||||||
|
setOrganizacionFilter(e.target.value);
|
||||||
|
setPage(1);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<option value="">Todas las organizaciones</option>
|
||||||
|
{loadingOrganizaciones ? (
|
||||||
|
<option value="" disabled>Cargando organizaciones...</option>
|
||||||
|
) : (
|
||||||
|
organizaciones.map((org) => (
|
||||||
|
<option key={org.id} value={org.id}>
|
||||||
|
{org.nombre}
|
||||||
|
</option>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* BOTÓN PARA EJECUTAR PROCESAMIENTOS - AGREGAR AQUÍ */}
|
||||||
|
<div className="flex justify-end mb-6">
|
||||||
|
<div className="relative">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="inline-flex items-center gap-2 bg-gradient-to-r from-green-600 to-emerald-600 hover:from-green-700 hover:to-emerald-700 text-white font-semibold py-3 px-6 rounded-2xl shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-0.5"
|
||||||
|
onClick={() => setShowProcesosDropdown(!showProcesosDropdown)}
|
||||||
|
disabled={ejecutandoProceso}
|
||||||
|
>
|
||||||
|
{ejecutandoProceso ? (
|
||||||
|
<>
|
||||||
|
<div className="w-4 h-4 border-b-2 border-white rounded-full animate-spin"></div>
|
||||||
|
Ejecutando...
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
|
||||||
|
</svg>
|
||||||
|
Ejecutar Procesamiento
|
||||||
|
<svg
|
||||||
|
className={`w-4 h-4 transition-transform duration-200 ${showProcesosDropdown ? 'rotate-180' : ''}`}
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 9l-7 7-7-7" />
|
||||||
|
</svg>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Dropdown de opciones de procesamiento */}
|
||||||
|
{showProcesosDropdown && (
|
||||||
|
<div className="absolute right-0 z-50 w-64 mt-2 overflow-hidden bg-white border border-gray-200 shadow-2xl rounded-2xl animate-fade-in">
|
||||||
|
<div className="p-2">
|
||||||
|
{/* Encabezado del dropdown */}
|
||||||
|
<div className="px-3 py-2 mb-1 rounded-lg bg-gradient-to-r from-green-50 to-emerald-50">
|
||||||
|
<p className="text-sm font-semibold text-green-800">Selecciona un proceso</p>
|
||||||
|
<p className="text-xs text-green-600">Se ejecutará para tu organización</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Opción "Todos" */}
|
||||||
|
<button
|
||||||
|
onClick={() => handleEjecutarProcesamiento({ todos: true })}
|
||||||
|
className="flex items-center w-full gap-3 px-4 py-3 mb-1 font-medium text-left text-gray-700 transition-colors duration-200 hover:bg-green-50 rounded-xl hover:text-green-700 group"
|
||||||
|
>
|
||||||
|
<div className="w-3 h-3 transition-transform duration-200 bg-green-500 rounded-full group-hover:scale-125"></div>
|
||||||
|
<div className="flex-1">
|
||||||
|
<span className="font-semibold">Todos</span>
|
||||||
|
<p className="text-xs text-gray-500 group-hover:text-green-600">Ejecutar todos los procesos</p>
|
||||||
|
</div>
|
||||||
|
<span className="text-xs text-gray-400 group-hover:text-green-500"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div className="my-2 border-t border-gray-100"></div>
|
||||||
|
|
||||||
|
{/* Opciones específicas */}
|
||||||
|
{[
|
||||||
|
{ id: 'procesamiento_pedimento', label: 'Procesamiento Inicial', desc: 'Procemiento Inicial de consulta a VU' },
|
||||||
|
{ id: 'pedimentos_completos', label: 'Pedimento Completo', desc: 'Procesar pedimentos completos' },
|
||||||
|
{ id: 'remesas', label: 'Remesas', desc: 'Procesar remesas' },
|
||||||
|
{ id: 'partidas', label: 'Partidas', desc: 'Procesar partidas' },
|
||||||
|
{ id: 'coves', label: 'Coves', desc: 'Procesar coves' },
|
||||||
|
{ id: 'edocs', label: 'Edocuments', desc: 'Procesar edocuments' },
|
||||||
|
{ id: 'acuse_coves', label: 'Acuses COVE', desc: 'Procesar acuses COVE' },
|
||||||
|
{ id: 'acuses', label: 'Acuses', desc: 'Procesar acuses' }
|
||||||
|
].map((proceso) => (
|
||||||
|
<button
|
||||||
|
key={proceso.id}
|
||||||
|
onClick={() => handleEjecutarProcesamiento({ procesamiento: proceso.id })}
|
||||||
|
className="flex items-center w-full gap-3 px-4 py-3 font-medium text-left text-gray-700 transition-colors duration-200 hover:bg-blue-50 rounded-xl hover:text-blue-700 group"
|
||||||
|
>
|
||||||
|
<div className="w-2 h-2 transition-transform duration-200 bg-blue-500 rounded-full group-hover:scale-125"></div>
|
||||||
|
<div className="flex-1">
|
||||||
|
<span>{proceso.label}</span>
|
||||||
|
<p className="text-xs text-gray-500 group-hover:text-blue-600">{proceso.desc}</p>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* Estados de carga y error mejorados */}
|
{/* Estados de carga y error mejorados */}
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<div className="flex flex-col items-center justify-center py-12">
|
<div className="flex flex-col items-center justify-center py-12">
|
||||||
<div className="relative">
|
<div className="relative">
|
||||||
<div className="animate-spin rounded-full h-16 w-16 border-b-2 border-blue-600"></div>
|
<div className="w-16 h-16 border-b-2 border-blue-600 rounded-full animate-spin"></div>
|
||||||
<div className="absolute inset-0 bg-blue-500/10 rounded-full blur-xl animate-pulse"></div>
|
<div className="absolute inset-0 rounded-full bg-blue-500/10 blur-xl animate-pulse"></div>
|
||||||
</div>
|
</div>
|
||||||
<p className="mt-4 text-gray-600 font-medium">Cargando procesos...</p>
|
<p className="mt-4 font-medium text-gray-600">Cargando procesos...</p>
|
||||||
</div>
|
</div>
|
||||||
) : error ? (
|
) : error ? (
|
||||||
<div className="bg-red-50 border border-red-200 rounded-2xl p-6 text-center">
|
<div className="p-6 text-center border border-red-200 bg-red-50 rounded-2xl">
|
||||||
<div className="bg-red-100 rounded-full p-3 w-12 h-12 mx-auto mb-4 flex items-center justify-center">
|
<div className="flex items-center justify-center w-12 h-12 p-3 mx-auto mb-4 bg-red-100 rounded-full">
|
||||||
<svg className="w-6 h-6 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-6 h-6 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<h3 className="text-lg font-semibold text-red-800 mb-2">Error al cargar</h3>
|
<h3 className="mb-2 text-lg font-semibold text-red-800">Error al cargar</h3>
|
||||||
<p className="text-red-600">{error}</p>
|
<p className="text-red-600">{error}</p>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
{/* Vista de tabla para pantallas grandes */}
|
{/* Vista de tabla para pantallas grandes */}
|
||||||
<div className="hidden lg:block overflow-x-auto bg-white rounded-2xl border border-gray-200 shadow-sm relative pb-20"
|
<div className="relative hidden pb-20 overflow-x-auto bg-white border border-gray-200 shadow-sm lg:block rounded-2xl"
|
||||||
style={{
|
style={{
|
||||||
overflowY: 'visible' // Permitir que los dropdowns se muestren fuera del contenedor
|
overflowY: 'visible' // Permitir que los dropdowns se muestren fuera del contenedor
|
||||||
}}>
|
}}>
|
||||||
<table className="min-w-full divide-y divide-gray-300 relative"
|
<table className="relative min-w-full divide-y divide-gray-300"
|
||||||
style={{ position: 'relative', zIndex: 1 }}>
|
style={{ position: 'relative', zIndex: 1 }}>
|
||||||
<thead className="bg-gray-50 sticky top-0 z-10">
|
<thead className="sticky top-0 z-10 bg-gray-50">
|
||||||
<tr>
|
<tr>
|
||||||
<th className="px-4 py-4 text-center text-xs font-bold text-gray-600 uppercase tracking-wider cursor-pointer select-none hover:bg-gray-100 transition-colors duration-200"
|
<th className="px-4 py-4 text-xs font-bold tracking-wider text-center text-gray-600 uppercase transition-colors duration-200 cursor-pointer select-none hover:bg-gray-100"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSortField('task_id');
|
setSortField('task_id');
|
||||||
setSortOrder(sortField === 'task_id' && sortOrder === 'asc' ? 'desc' : 'asc');
|
setSortOrder(sortField === 'task_id' && sortOrder === 'asc' ? 'desc' : 'asc');
|
||||||
@@ -638,7 +850,7 @@ export default function Procesos() {
|
|||||||
Task ID {sortField === 'task_id' && (sortOrder === 'asc' ? '▲' : '▼')}
|
Task ID {sortField === 'task_id' && (sortOrder === 'asc' ? '▲' : '▼')}
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
<th className="px-4 py-4 text-left text-xs font-bold text-gray-600 uppercase tracking-wider cursor-pointer select-none hover:bg-gray-100 transition-colors duration-200"
|
<th className="px-4 py-4 text-xs font-bold tracking-wider text-left text-gray-600 uppercase transition-colors duration-200 cursor-pointer select-none hover:bg-gray-100"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSortField('pedimento_app');
|
setSortField('pedimento_app');
|
||||||
setSortOrder(sortField === 'pedimento_app' && sortOrder === 'asc' ? 'desc' : 'asc');
|
setSortOrder(sortField === 'pedimento_app' && sortOrder === 'asc' ? 'desc' : 'asc');
|
||||||
@@ -648,7 +860,7 @@ export default function Procesos() {
|
|||||||
Pedimento {sortField === 'pedimento_app' && (sortOrder === 'asc' ? '▲' : '▼')}
|
Pedimento {sortField === 'pedimento_app' && (sortOrder === 'asc' ? '▲' : '▼')}
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
<th className="px-4 py-4 text-left text-xs font-bold text-gray-600 uppercase tracking-wider cursor-pointer select-none hover:bg-gray-100 transition-colors duration-200"
|
<th className="px-4 py-4 text-xs font-bold tracking-wider text-left text-gray-600 uppercase transition-colors duration-200 cursor-pointer select-none hover:bg-gray-100"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSortField('status');
|
setSortField('status');
|
||||||
setSortOrder(sortField === 'status' && sortOrder === 'asc' ? 'desc' : 'asc');
|
setSortOrder(sortField === 'status' && sortOrder === 'asc' ? 'desc' : 'asc');
|
||||||
@@ -658,7 +870,7 @@ export default function Procesos() {
|
|||||||
Estado {sortField === 'status' && (sortOrder === 'asc' ? '▲' : '▼')}
|
Estado {sortField === 'status' && (sortOrder === 'asc' ? '▲' : '▼')}
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
<th className="px-4 py-4 text-left text-xs font-bold text-gray-600 uppercase tracking-wider cursor-pointer select-none hover:bg-gray-100 transition-colors duration-200 rounded-tr-2xl"
|
<th className="px-4 py-4 text-xs font-bold tracking-wider text-left text-gray-600 uppercase transition-colors duration-200 cursor-pointer select-none hover:bg-gray-100 rounded-tr-2xl"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSortField('timestamp');
|
setSortField('timestamp');
|
||||||
setSortOrder(sortField === 'timestamp' && sortOrder === 'asc' ? 'desc' : 'asc');
|
setSortOrder(sortField === 'timestamp' && sortOrder === 'asc' ? 'desc' : 'asc');
|
||||||
@@ -668,7 +880,7 @@ export default function Procesos() {
|
|||||||
Fecha de creación {sortField === 'timestamp' && (sortOrder === 'asc' ? '▲' : '▼')}
|
Fecha de creación {sortField === 'timestamp' && (sortOrder === 'asc' ? '▲' : '▼')}
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
<th className="px-4 py-4 text-left text-xs font-bold text-gray-600 uppercase tracking-wider cursor-pointer select-none hover:bg-gray-100 transition-colors duration-200 rounded-tr-2xl"
|
<th className="px-4 py-4 text-xs font-bold tracking-wider text-left text-gray-600 uppercase transition-colors duration-200 cursor-pointer select-none hover:bg-gray-100 rounded-tr-2xl"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSortField('servicio');
|
setSortField('servicio');
|
||||||
setSortOrder(sortField === 'servicio' && sortOrder === 'asc' ? 'desc' : 'asc');
|
setSortOrder(sortField === 'servicio' && sortOrder === 'asc' ? 'desc' : 'asc');
|
||||||
@@ -680,18 +892,18 @@ export default function Procesos() {
|
|||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody className="bg-white divide-y divide-gray-100 relative" style={{ position: 'relative' }}>
|
<tbody className="relative bg-white divide-y divide-gray-100" style={{ position: 'relative' }}>
|
||||||
{procesos.length === 0 ? (
|
{procesos.length === 0 ? (
|
||||||
<tr>
|
<tr>
|
||||||
<td colSpan={5} className="text-center py-12">
|
<td colSpan={5} className="py-12 text-center">
|
||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
<div className="bg-gray-100 rounded-full p-4 w-16 h-16 mx-auto mb-4 flex items-center justify-center">
|
<div className="flex items-center justify-center w-16 h-16 p-4 mx-auto mb-4 bg-gray-100 rounded-full">
|
||||||
<svg className="w-8 h-8 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-8 h-8 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-gray-500 font-medium">No hay procesos disponibles</p>
|
<p className="font-medium text-gray-500">No hay procesos disponibles</p>
|
||||||
<p className="text-gray-400 text-sm mt-1">Intenta ajustar los filtros de búsqueda</p>
|
<p className="mt-1 text-sm text-gray-400">Intenta ajustar los filtros de búsqueda</p>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -701,17 +913,17 @@ export default function Procesos() {
|
|||||||
<td className="px-4 py-4 text-center align-middle whitespace-nowrap">
|
<td className="px-4 py-4 text-center align-middle whitespace-nowrap">
|
||||||
<button
|
<button
|
||||||
onClick={() => handleTaskClick(proc.task_id)}
|
onClick={() => handleTaskClick(proc.task_id)}
|
||||||
className="bg-gray-100 text-gray-800 px-2 py-1 rounded-lg text-sm font-semibold hover:bg-blue-100 hover:text-blue-800 transition-colors duration-200 cursor-pointer"
|
className="px-2 py-1 text-sm font-semibold text-gray-800 transition-colors duration-200 bg-gray-100 rounded-lg cursor-pointer hover:bg-blue-100 hover:text-blue-800"
|
||||||
>
|
>
|
||||||
{proc.task_id}
|
{proc.task_id}
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
<td className="px-4 py-4 whitespace-nowrap align-middle text-sm font-medium text-gray-900">
|
<td className="px-4 py-4 text-sm font-medium text-gray-900 align-middle whitespace-nowrap">
|
||||||
<Link to={`/expedientes/pedimento/${proc.pedimento}`} className='hover:text-blue-500 hover:text-bold hover:text-underline'>
|
<Link to={`/expedientes/pedimento/${proc.pedimento}`} className='hover:text-blue-500 hover:text-bold hover:text-underline'>
|
||||||
{proc.pedimento_app || '-'}
|
{proc.pedimento_app || '-'}
|
||||||
</Link>
|
</Link>
|
||||||
</td>
|
</td>
|
||||||
<td className="px-4 py-4 whitespace-nowrap align-middle">
|
<td className="px-4 py-4 align-middle whitespace-nowrap">
|
||||||
{(() => {
|
{(() => {
|
||||||
const estado = proc.status?.toLowerCase() === 'pending' ? { text: 'En Espera', color: 'bg-yellow-100 text-yellow-800 border-yellow-200' }
|
const estado = proc.status?.toLowerCase() === 'pending' ? { text: 'En Espera', color: 'bg-yellow-100 text-yellow-800 border-yellow-200' }
|
||||||
: proc.status?.toLowerCase() === 'running' ? { text: 'Procesando', color: 'bg-blue-100 text-blue-800 border-blue-200' }
|
: proc.status?.toLowerCase() === 'running' ? { text: 'Procesando', color: 'bg-blue-100 text-blue-800 border-blue-200' }
|
||||||
@@ -725,7 +937,7 @@ export default function Procesos() {
|
|||||||
);
|
);
|
||||||
})()}
|
})()}
|
||||||
</td>
|
</td>
|
||||||
<td className="px-4 py-4 whitespace-nowrap align-middle text-sm text-gray-600">
|
<td className="px-4 py-4 text-sm text-gray-600 align-middle whitespace-nowrap">
|
||||||
{new Date(proc.timestamp).toLocaleString('es-MX', {
|
{new Date(proc.timestamp).toLocaleString('es-MX', {
|
||||||
day: '2-digit',
|
day: '2-digit',
|
||||||
month: '2-digit',
|
month: '2-digit',
|
||||||
@@ -735,7 +947,7 @@ export default function Procesos() {
|
|||||||
hour12: true
|
hour12: true
|
||||||
})}
|
})}
|
||||||
</td>
|
</td>
|
||||||
<td className="px-4 py-4 whitespace-nowrap align-middle">
|
<td className="px-4 py-4 align-middle whitespace-nowrap">
|
||||||
{(() => {
|
{(() => {
|
||||||
const services = {
|
const services = {
|
||||||
'1': 'Estado de pedimento',
|
'1': 'Estado de pedimento',
|
||||||
@@ -763,29 +975,29 @@ export default function Procesos() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Vista de tarjetas para pantallas pequeñas y medianas */}
|
{/* Vista de tarjetas para pantallas pequeñas y medianas */}
|
||||||
<div className="lg:hidden space-y-4">
|
<div className="space-y-4 lg:hidden">
|
||||||
{procesos.length === 0 ? (
|
{procesos.length === 0 ? (
|
||||||
<div className="bg-gray-50 rounded-2xl p-8 text-center">
|
<div className="p-8 text-center bg-gray-50 rounded-2xl">
|
||||||
<div className="bg-gray-100 rounded-full p-4 w-16 h-16 mx-auto mb-4 flex items-center justify-center">
|
<div className="flex items-center justify-center w-16 h-16 p-4 mx-auto mb-4 bg-gray-100 rounded-full">
|
||||||
<svg className="w-8 h-8 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-8 h-8 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-gray-500 font-medium">No hay procesos disponibles</p>
|
<p className="font-medium text-gray-500">No hay procesos disponibles</p>
|
||||||
<p className="text-gray-400 text-sm mt-1">Intenta ajustar los filtros de búsqueda</p>
|
<p className="mt-1 text-sm text-gray-400">Intenta ajustar los filtros de búsqueda</p>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
procesos.map((proc) => (
|
procesos.map((proc) => (
|
||||||
<div key={proc.task_id} className="bg-white rounded-2xl shadow-lg border border-gray-200 p-4 hover:shadow-xl transition-all duration-300">
|
<div key={proc.task_id} className="p-4 transition-all duration-300 bg-white border border-gray-200 shadow-lg rounded-2xl hover:shadow-xl">
|
||||||
<div className="flex items-start justify-between mb-4">
|
<div className="flex items-start justify-between mb-4">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
|
|
||||||
<div className="bg-blue-100 rounded-xl p-2 flex-shrink-0">
|
<div className="flex-shrink-0 p-2 bg-blue-100 rounded-xl">
|
||||||
<svg className="w-5 h-5 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-5 h-5 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div className="min-w-0 flex-1">
|
<div className="flex-1 min-w-0">
|
||||||
<h3 className="text-lg font-semibold text-gray-900">Proceso #{proc.task_id}</h3>
|
<h3 className="text-lg font-semibold text-gray-900">Proceso #{proc.task_id}</h3>
|
||||||
<p className="text-sm text-gray-500">{proc.organizacion_name || 'Sin organización'}</p>
|
<p className="text-sm text-gray-500">{proc.organizacion_name || 'Sin organización'}</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -804,10 +1016,10 @@ export default function Procesos() {
|
|||||||
})()}
|
})()}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="space-y-3 mb-4">
|
<div className="mb-4 space-y-3">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<span className="text-sm font-medium text-gray-600">Pedimento:</span>
|
<span className="text-sm font-medium text-gray-600">Pedimento:</span>
|
||||||
<span className="text-sm font-mono text-gray-900 bg-gray-100 px-2 py-1 rounded">
|
<span className="px-2 py-1 font-mono text-sm text-gray-900 bg-gray-100 rounded">
|
||||||
{proc.pedimento_app || '-'}
|
{proc.pedimento_app || '-'}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -854,7 +1066,7 @@ export default function Procesos() {
|
|||||||
|
|
||||||
{/* Paginación compartida mejorada */}
|
{/* Paginación compartida mejorada */}
|
||||||
{count > 0 && (
|
{count > 0 && (
|
||||||
<div className="bg-gradient-to-r from-gray-50 to-slate-50 px-4 sm:px-6 py-4 mt-6 rounded-2xl border border-gray-200 flex flex-col sm:flex-row items-center justify-between gap-4">
|
<div className="flex flex-col items-center justify-between gap-4 px-4 py-4 mt-6 border border-gray-200 bg-gradient-to-r from-gray-50 to-slate-50 sm:px-6 rounded-2xl sm:flex-row">
|
||||||
{(() => {
|
{(() => {
|
||||||
const totalPages = Math.max(1, Math.ceil(count / itemsPerPage));
|
const totalPages = Math.max(1, Math.ceil(count / itemsPerPage));
|
||||||
const maxPagesToShow = 5;
|
const maxPagesToShow = 5;
|
||||||
@@ -871,12 +1083,12 @@ export default function Procesos() {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<label htmlFor="itemsPerPage" className="text-sm text-gray-600 font-medium">Registros por página:</label>
|
<label htmlFor="itemsPerPage" className="text-sm font-medium text-gray-600">Registros por página:</label>
|
||||||
<select
|
<select
|
||||||
id="itemsPerPage"
|
id="itemsPerPage"
|
||||||
value={itemsPerPage}
|
value={itemsPerPage}
|
||||||
onChange={e => { setItemsPerPage(Number(e.target.value)); setPage(1); }}
|
onChange={e => { setItemsPerPage(Number(e.target.value)); setPage(1); }}
|
||||||
className="border border-gray-300 rounded-xl px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 bg-white shadow-sm"
|
className="px-3 py-2 text-sm bg-white border border-gray-300 shadow-sm rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
|
||||||
>
|
>
|
||||||
{[5, 8, 12, 20, 50, 100].map(size => (
|
{[5, 8, 12, 20, 50, 100].map(size => (
|
||||||
<option key={size} value={size}>{size}</option>
|
<option key={size} value={size}>{size}</option>
|
||||||
|
|||||||
416
src/pages/ProfileForm.jsx
Normal file
416
src/pages/ProfileForm.jsx
Normal file
@@ -0,0 +1,416 @@
|
|||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import { useNavigate, useParams } from 'react-router-dom';
|
||||||
|
import {
|
||||||
|
getRole,
|
||||||
|
createRole,
|
||||||
|
updateRole,
|
||||||
|
fetchPermissionsByModule,
|
||||||
|
} from '../api/rbac';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
|
||||||
|
// Nombres legibles de módulos para la UI
|
||||||
|
const MODULE_LABELS = {
|
||||||
|
usuarios: 'Usuarios',
|
||||||
|
pedimentos: 'Pedimentos',
|
||||||
|
partidas: 'Partidas',
|
||||||
|
remesas: 'Remesas',
|
||||||
|
coves: 'COVEs',
|
||||||
|
edocuments: 'E-Documents',
|
||||||
|
acuses: 'Acuses',
|
||||||
|
documentos: 'Documentos',
|
||||||
|
vucem: 'Ventanilla Única (VUCEM)',
|
||||||
|
reportes: 'Reportes',
|
||||||
|
datastage: 'DataStage',
|
||||||
|
organizacion: 'Organización',
|
||||||
|
notificaciones: 'Notificaciones',
|
||||||
|
cards: 'Dashboard / Cards',
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function ProfileForm() {
|
||||||
|
const { id } = useParams();
|
||||||
|
const isEditing = Boolean(id);
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const { showMessage } = useNotification();
|
||||||
|
|
||||||
|
const [name, setName] = useState('');
|
||||||
|
const [description, setDescription] = useState('');
|
||||||
|
const [isAdminRole, setIsAdminRole] = useState(false);
|
||||||
|
|
||||||
|
// Permisos de la API: { modulo: [{ id, codename, descripcion, modulo }] }
|
||||||
|
const [permsByModule, setPermsByModule] = useState({});
|
||||||
|
const [loadingPerms, setLoadingPerms] = useState(true);
|
||||||
|
|
||||||
|
// IDs numéricos de permisos seleccionados
|
||||||
|
const [selectedPermIds, setSelectedPermIds] = useState(new Set());
|
||||||
|
|
||||||
|
const [loadingRole, setLoadingRole] = useState(isEditing);
|
||||||
|
const [submitting, setSubmitting] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (typeof window !== 'undefined' && !document.getElementById('profiles-animations')) {
|
||||||
|
const style = document.createElement('style');
|
||||||
|
style.id = 'profiles-animations';
|
||||||
|
style.innerHTML = `
|
||||||
|
@keyframes fadeInUpProfiles {
|
||||||
|
0% { opacity: 0; transform: translateY(24px); }
|
||||||
|
100% { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
.fade-in-up-profiles { animation: fadeInUpProfiles 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
|
||||||
|
@keyframes bounce-slow {
|
||||||
|
0%, 100% { transform: translateY(0); }
|
||||||
|
50% { transform: translateY(-8px); }
|
||||||
|
}
|
||||||
|
.animate-bounce-slow { animation: bounce-slow 2.2s infinite; }
|
||||||
|
`;
|
||||||
|
document.head.appendChild(style);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Cargar catálogo de permisos desde API
|
||||||
|
useEffect(() => {
|
||||||
|
fetchPermissionsByModule()
|
||||||
|
.then(data => {
|
||||||
|
setPermsByModule(data && typeof data === 'object' ? data : {});
|
||||||
|
})
|
||||||
|
.catch(() => showMessage('Error al cargar catálogo de permisos', 'error'))
|
||||||
|
.finally(() => setLoadingPerms(false));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Cargar datos del rol si es edición
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isEditing) return;
|
||||||
|
getRole(id)
|
||||||
|
.then(role => {
|
||||||
|
setName(role.nombre || '');
|
||||||
|
setDescription(role.descripcion || '');
|
||||||
|
setIsAdminRole(role.is_admin_role || false);
|
||||||
|
|
||||||
|
// Permisos vienen como [{ id, codename, descripcion, modulo }]
|
||||||
|
const permList = Array.isArray(role.permissions) ? role.permissions : [];
|
||||||
|
setSelectedPermIds(new Set(permList.map(p => p.id)));
|
||||||
|
setLoadingRole(false);
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
showMessage(err.message || 'Error al cargar perfil', 'error');
|
||||||
|
setLoadingRole(false);
|
||||||
|
});
|
||||||
|
}, [id, isEditing]);
|
||||||
|
|
||||||
|
// Módulos en el orden en que llegan de la API
|
||||||
|
const modules = Object.keys(permsByModule);
|
||||||
|
|
||||||
|
const togglePerm = (permId) => {
|
||||||
|
setSelectedPermIds(prev => {
|
||||||
|
const next = new Set(prev);
|
||||||
|
if (next.has(permId)) next.delete(permId);
|
||||||
|
else next.add(permId);
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleModule = (module) => {
|
||||||
|
const moduleIds = (permsByModule[module] || []).map(p => p.id);
|
||||||
|
const allSelected = moduleIds.every(id => selectedPermIds.has(id));
|
||||||
|
setSelectedPermIds(prev => {
|
||||||
|
const next = new Set(prev);
|
||||||
|
if (allSelected) {
|
||||||
|
moduleIds.forEach(id => next.delete(id));
|
||||||
|
} else {
|
||||||
|
moduleIds.forEach(id => next.add(id));
|
||||||
|
}
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const totalPerms = modules.reduce((acc, m) => acc + (permsByModule[m]?.length ?? 0), 0);
|
||||||
|
|
||||||
|
const selectAll = () => {
|
||||||
|
const all = modules.flatMap(m => (permsByModule[m] || []).map(p => p.id));
|
||||||
|
setSelectedPermIds(new Set(all));
|
||||||
|
};
|
||||||
|
|
||||||
|
const clearAll = () => setSelectedPermIds(new Set());
|
||||||
|
|
||||||
|
const handleSubmit = async (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!name.trim()) {
|
||||||
|
showMessage('El nombre del perfil es obligatorio', 'error');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setSubmitting(true);
|
||||||
|
try {
|
||||||
|
const payload = {
|
||||||
|
nombre: name.trim(),
|
||||||
|
descripcion: description.trim(),
|
||||||
|
permission_ids: [...selectedPermIds],
|
||||||
|
};
|
||||||
|
|
||||||
|
if (isEditing) {
|
||||||
|
await updateRole(id, payload);
|
||||||
|
showMessage('Perfil actualizado correctamente', 'success');
|
||||||
|
} else {
|
||||||
|
await createRole(payload);
|
||||||
|
showMessage('Perfil creado correctamente', 'success');
|
||||||
|
}
|
||||||
|
navigate('/profiles');
|
||||||
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'Error al guardar perfil', 'error');
|
||||||
|
} finally {
|
||||||
|
setSubmitting(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (loadingRole) {
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen p-4 sm:p-6 bg-gradient-to-br from-gray-50 to-blue-50 flex items-center justify-center">
|
||||||
|
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-indigo-600" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen p-4 sm:p-6 bg-gradient-to-br from-gray-50 to-blue-50">
|
||||||
|
<div className="max-w-4xl mx-auto">
|
||||||
|
|
||||||
|
{/* Header */}
|
||||||
|
<div className="mb-8 relative overflow-hidden rounded-2xl shadow bg-gradient-to-r from-indigo-600 via-indigo-700 to-indigo-800 border border-indigo-200 p-6 sm:p-8 flex flex-col sm:flex-row items-start sm:items-center gap-4 sm:gap-6 fade-in-up-profiles">
|
||||||
|
<div className="flex-shrink-0 bg-white/20 backdrop-blur-sm rounded-full p-3 sm:p-4 shadow-lg animate-bounce-slow">
|
||||||
|
<svg className="h-8 w-8 sm:h-10 sm:w-10 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h1 className="text-2xl sm:text-3xl font-extrabold text-white tracking-tight mb-1">
|
||||||
|
{isEditing ? 'Editar Perfil' : 'Nuevo Perfil'}
|
||||||
|
</h1>
|
||||||
|
<p className="text-sm sm:text-base text-white/80 font-medium">
|
||||||
|
{isEditing ? `Editando: ${name}` : 'Define nombre y permisos del nuevo perfil'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => navigate('/profiles')}
|
||||||
|
className="flex-shrink-0 inline-flex items-center gap-2 px-4 py-2 bg-white/20 hover:bg-white/30 text-white text-sm font-medium rounded-lg border border-white/30 transition-all duration-200"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" />
|
||||||
|
</svg>
|
||||||
|
Regresar
|
||||||
|
</button>
|
||||||
|
<div className="absolute -top-10 -right-10 opacity-20 pointer-events-none select-none">
|
||||||
|
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
|
||||||
|
<circle cx="60" cy="60" r="50" fill="white" fillOpacity="0.15" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form onSubmit={handleSubmit} className="space-y-6">
|
||||||
|
|
||||||
|
{/* Datos del perfil */}
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 p-6 fade-in-up-profiles" style={{ animationDelay: '0.05s' }}>
|
||||||
|
<div className="flex items-center mb-4 pb-3 border-b border-gray-200">
|
||||||
|
<div className="bg-indigo-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Datos del perfil</h4>
|
||||||
|
<p className="text-xs text-slate-500">Identifica el perfil dentro de la organización</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4 max-w-2xl">
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">
|
||||||
|
Nombre <span className="text-red-600">*</span>
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={name}
|
||||||
|
onChange={e => setName(e.target.value)}
|
||||||
|
required
|
||||||
|
disabled={isAdminRole}
|
||||||
|
placeholder="Ej. Operador de VUCEM"
|
||||||
|
className="w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-all bg-white text-slate-900 placeholder-slate-400 text-sm disabled:bg-slate-100 disabled:text-slate-500"
|
||||||
|
/>
|
||||||
|
{isAdminRole && (
|
||||||
|
<p className="text-xs text-amber-600 flex items-center gap-1 mt-1">
|
||||||
|
<svg className="w-3 h-3" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M12 2l2.09 6.26L20 10l-5 4.87L16.18 22 12 18.77 7.82 22 9 14.87 4 10l5.91-1.74z" />
|
||||||
|
</svg>
|
||||||
|
Perfil de administrador — el nombre es fijo
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">Descripción</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={description}
|
||||||
|
onChange={e => setDescription(e.target.value)}
|
||||||
|
placeholder="Descripción opcional del perfil"
|
||||||
|
className="w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-all bg-white text-slate-900 placeholder-slate-400 text-sm"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Permisos */}
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 p-6 fade-in-up-profiles" style={{ animationDelay: '0.1s' }}>
|
||||||
|
<div className="flex items-center justify-between mb-4 pb-3 border-b border-gray-200">
|
||||||
|
<div className="flex items-center">
|
||||||
|
<div className="bg-indigo-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Permisos</h4>
|
||||||
|
<p className="text-xs text-slate-500">
|
||||||
|
{loadingPerms
|
||||||
|
? 'Cargando catálogo…'
|
||||||
|
: `${selectedPermIds.size} de ${totalPerms} permisos seleccionados`}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{!loadingPerms && (
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={selectAll}
|
||||||
|
className="px-2.5 py-1 text-xs font-medium text-indigo-700 bg-indigo-50 hover:bg-indigo-100 rounded-md border border-indigo-200 transition-colors"
|
||||||
|
>
|
||||||
|
Todos
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={clearAll}
|
||||||
|
className="px-2.5 py-1 text-xs font-medium text-slate-600 bg-slate-50 hover:bg-slate-100 rounded-md border border-slate-200 transition-colors"
|
||||||
|
>
|
||||||
|
Ninguno
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loadingPerms ? (
|
||||||
|
<div className="flex items-center justify-center py-10">
|
||||||
|
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-indigo-600" />
|
||||||
|
</div>
|
||||||
|
) : modules.length === 0 ? (
|
||||||
|
<div className="text-center py-10 text-slate-400 text-sm">
|
||||||
|
No se pudo cargar el catálogo de permisos
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-5">
|
||||||
|
{modules.map(module => {
|
||||||
|
const modulePerms = permsByModule[module] || [];
|
||||||
|
const selectedCount = modulePerms.filter(p => selectedPermIds.has(p.id)).length;
|
||||||
|
const allSelected = selectedCount === modulePerms.length && modulePerms.length > 0;
|
||||||
|
const someSelected = selectedCount > 0 && !allSelected;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div key={module} className="border border-slate-100 rounded-xl overflow-hidden">
|
||||||
|
{/* Cabecera módulo */}
|
||||||
|
<div
|
||||||
|
className={`flex items-center justify-between px-4 py-2.5 cursor-pointer select-none transition-colors ${
|
||||||
|
allSelected ? 'bg-indigo-50' : someSelected ? 'bg-slate-50' : 'bg-slate-50/50'
|
||||||
|
}`}
|
||||||
|
onClick={() => toggleModule(module)}
|
||||||
|
>
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<div className={`w-4 h-4 rounded border-2 flex items-center justify-center flex-shrink-0 transition-colors ${
|
||||||
|
allSelected
|
||||||
|
? 'bg-indigo-600 border-indigo-600'
|
||||||
|
: someSelected
|
||||||
|
? 'bg-indigo-200 border-indigo-400'
|
||||||
|
: 'bg-white border-slate-300'
|
||||||
|
}`}>
|
||||||
|
{allSelected && (
|
||||||
|
<svg className="w-2.5 h-2.5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" d="M5 13l4 4L19 7" />
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
{someSelected && (
|
||||||
|
<div className="w-1.5 h-0.5 bg-indigo-600 rounded" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<span className="text-sm font-semibold text-slate-700">
|
||||||
|
{MODULE_LABELS[module] ?? module}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<span className="text-xs text-slate-400 font-mono">
|
||||||
|
{selectedCount}/{modulePerms.length}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Permisos del módulo */}
|
||||||
|
<div className="grid grid-cols-2 sm:grid-cols-3 gap-px bg-slate-100">
|
||||||
|
{modulePerms.map(perm => {
|
||||||
|
const active = selectedPermIds.has(perm.id);
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
key={perm.id}
|
||||||
|
type="button"
|
||||||
|
onClick={() => togglePerm(perm.id)}
|
||||||
|
className={`flex items-center gap-2 px-3 py-2 text-left transition-colors duration-100 ${
|
||||||
|
active ? 'bg-indigo-50' : 'bg-white hover:bg-slate-50'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<div className={`w-3.5 h-3.5 rounded border flex items-center justify-center flex-shrink-0 transition-colors ${
|
||||||
|
active ? 'bg-indigo-600 border-indigo-600' : 'bg-white border-slate-300'
|
||||||
|
}`}>
|
||||||
|
{active && (
|
||||||
|
<svg className="w-2 h-2 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" d="M5 13l4 4L19 7" />
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
|
className={`text-xs truncate ${active ? 'text-indigo-800 font-medium' : 'text-slate-600'}`}
|
||||||
|
title={perm.descripcion}
|
||||||
|
>
|
||||||
|
{perm.descripcion}
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Botones */}
|
||||||
|
<div className="flex flex-col sm:flex-row justify-end gap-3 pb-8 fade-in-up-profiles" style={{ animationDelay: '0.15s' }}>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => navigate('/profiles')}
|
||||||
|
disabled={submitting}
|
||||||
|
className="w-full sm:w-auto px-6 py-2.5 border border-slate-300 rounded-lg shadow-sm text-sm font-semibold text-slate-700 bg-white hover:bg-slate-50 transition-all duration-200 disabled:opacity-50"
|
||||||
|
>
|
||||||
|
Cancelar
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={submitting || loadingPerms}
|
||||||
|
className="w-full sm:w-auto px-6 py-2.5 rounded-lg shadow-lg text-sm font-semibold text-white bg-gradient-to-r from-indigo-600 to-indigo-800 hover:from-indigo-700 hover:to-indigo-900 transition-all duration-200 flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"
|
||||||
|
>
|
||||||
|
{submitting && <div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white" />}
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={isEditing ? 'M5 13l4 4L19 7' : 'M12 6v6m0 0v6m0-6h6m-6 0H6'} />
|
||||||
|
</svg>
|
||||||
|
<span>
|
||||||
|
{submitting
|
||||||
|
? (isEditing ? 'Guardando...' : 'Creando...')
|
||||||
|
: (isEditing ? 'Guardar cambios' : 'Crear perfil')}
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
275
src/pages/Profiles.jsx
Normal file
275
src/pages/Profiles.jsx
Normal file
@@ -0,0 +1,275 @@
|
|||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import { useNavigate } from 'react-router-dom';
|
||||||
|
import { fetchRoles, deleteRole } from '../api/rbac';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
|
||||||
|
export default function Profiles() {
|
||||||
|
const [roles, setRoles] = useState([]);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [searchTerm, setSearchTerm] = useState('');
|
||||||
|
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
||||||
|
const [roleToDelete, setRoleToDelete] = useState(null);
|
||||||
|
const [deleting, setDeleting] = useState(false);
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const { showMessage } = useNotification();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (typeof window !== 'undefined' && !document.getElementById('profiles-animations')) {
|
||||||
|
const style = document.createElement('style');
|
||||||
|
style.id = 'profiles-animations';
|
||||||
|
style.innerHTML = `
|
||||||
|
@keyframes fadeInUpProfiles {
|
||||||
|
0% { opacity: 0; transform: translateY(24px); }
|
||||||
|
100% { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
.fade-in-up-profiles { animation: fadeInUpProfiles 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
|
||||||
|
`;
|
||||||
|
document.head.appendChild(style);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const loadRoles = () => {
|
||||||
|
setLoading(true);
|
||||||
|
fetchRoles()
|
||||||
|
.then(data => {
|
||||||
|
setRoles(Array.isArray(data) ? data : (data?.results ?? []));
|
||||||
|
setLoading(false);
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
showMessage(err.message || 'Error al cargar perfiles', 'error');
|
||||||
|
setLoading(false);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => { loadRoles(); }, []);
|
||||||
|
|
||||||
|
const handleDeleteClick = (role) => {
|
||||||
|
setRoleToDelete(role);
|
||||||
|
setShowDeleteModal(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDeleteConfirm = async () => {
|
||||||
|
if (!roleToDelete) return;
|
||||||
|
setDeleting(true);
|
||||||
|
try {
|
||||||
|
await deleteRole(roleToDelete.id);
|
||||||
|
showMessage('Perfil eliminado correctamente', 'success');
|
||||||
|
setShowDeleteModal(false);
|
||||||
|
setRoleToDelete(null);
|
||||||
|
loadRoles();
|
||||||
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'Error al eliminar perfil', 'error');
|
||||||
|
} finally {
|
||||||
|
setDeleting(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const filtered = roles.filter(r =>
|
||||||
|
r.nombre?.toLowerCase().includes(searchTerm.toLowerCase())
|
||||||
|
);
|
||||||
|
|
||||||
|
const permCount = (role) => {
|
||||||
|
if (Array.isArray(role.permissions)) return role.permissions.length;
|
||||||
|
return '—';
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen p-4 sm:p-6 bg-gradient-to-br from-gray-50 to-blue-50">
|
||||||
|
<div className="max-w-5xl mx-auto">
|
||||||
|
|
||||||
|
{/* Header */}
|
||||||
|
<div className="mb-8 relative overflow-hidden rounded-2xl shadow bg-gradient-to-r from-blue-600 via-blue-700 to-blue-800 border border-blue-200 p-6 sm:p-8 flex flex-col sm:flex-row items-start sm:items-center gap-4 sm:gap-6 fade-in-up-profiles">
|
||||||
|
<div className="flex-shrink-0 bg-white/20 backdrop-blur-sm rounded-full p-3 sm:p-4 shadow-lg">
|
||||||
|
<svg className="h-8 w-8 sm:h-10 sm:w-10 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h1 className="text-2xl sm:text-3xl font-extrabold text-white tracking-tight mb-1">
|
||||||
|
Perfiles y Permisos
|
||||||
|
</h1>
|
||||||
|
<p className="text-sm sm:text-base text-white/80 font-medium">
|
||||||
|
Gestión de roles y accesos de la organización
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
onClick={() => navigate('/profiles/new')}
|
||||||
|
className="flex-shrink-0 inline-flex items-center gap-2 px-4 py-2 bg-white/20 hover:bg-white/30 text-white text-sm font-medium rounded-lg border border-white/30 transition-all duration-200"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
|
||||||
|
</svg>
|
||||||
|
Nuevo perfil
|
||||||
|
</button>
|
||||||
|
<div className="absolute -top-10 -right-10 opacity-20 pointer-events-none select-none">
|
||||||
|
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
|
||||||
|
<circle cx="60" cy="60" r="50" fill="white" fillOpacity="0.15" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Buscador */}
|
||||||
|
<div className="mb-4 fade-in-up-profiles" style={{ animationDelay: '0.05s' }}>
|
||||||
|
<div className="relative">
|
||||||
|
<svg className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-slate-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
||||||
|
</svg>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={searchTerm}
|
||||||
|
onChange={e => setSearchTerm(e.target.value)}
|
||||||
|
placeholder="Buscar perfil..."
|
||||||
|
className="w-full pl-9 pr-4 py-2 border border-slate-200 rounded-lg shadow-sm bg-white text-sm text-slate-800 placeholder-slate-400 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-all"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Tabla */}
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 overflow-hidden fade-in-up-profiles" style={{ animationDelay: '0.1s' }}>
|
||||||
|
{loading ? (
|
||||||
|
<div className="flex items-center justify-center py-20">
|
||||||
|
<div className="animate-spin rounded-full h-10 w-10 border-b-2 border-blue-600" />
|
||||||
|
</div>
|
||||||
|
) : filtered.length === 0 ? (
|
||||||
|
<div className="flex flex-col items-center justify-center py-20 text-slate-400">
|
||||||
|
<svg className="w-12 h-12 mb-3 opacity-40" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
||||||
|
</svg>
|
||||||
|
<p className="text-sm font-medium">
|
||||||
|
{searchTerm ? 'Sin resultados para la búsqueda' : 'No hay perfiles registrados'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="overflow-x-auto">
|
||||||
|
<table className="min-w-full divide-y divide-gray-100">
|
||||||
|
<thead className="bg-slate-50">
|
||||||
|
<tr>
|
||||||
|
<th className="px-5 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Perfil</th>
|
||||||
|
<th className="px-5 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Tipo</th>
|
||||||
|
<th className="px-5 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Permisos</th>
|
||||||
|
<th className="px-5 py-3 text-right text-xs font-semibold text-slate-500 uppercase tracking-wider">Acciones</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody className="divide-y divide-gray-50">
|
||||||
|
{filtered.map(role => (
|
||||||
|
<tr key={role.id} className="hover:bg-slate-50/60 transition-colors duration-100">
|
||||||
|
<td className="px-5 py-4">
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<div className={`w-8 h-8 rounded-lg flex items-center justify-center flex-shrink-0 ${role.is_admin_role ? 'bg-amber-100' : 'bg-blue-100'}`}>
|
||||||
|
{role.is_admin_role ? (
|
||||||
|
<svg className="w-4 h-4 text-amber-600" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M12 2l2.09 6.26L20 10l-5 4.87L16.18 22 12 18.77 7.82 22 9 14.87 4 10l5.91-1.74z" />
|
||||||
|
</svg>
|
||||||
|
) : (
|
||||||
|
<svg className="w-4 h-4 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<span className="text-sm font-semibold text-slate-800">{role.nombre}</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="px-5 py-4">
|
||||||
|
{role.is_admin_role ? (
|
||||||
|
<span className="inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-xs font-semibold bg-amber-100 text-amber-700">
|
||||||
|
<svg className="w-3 h-3" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M12 2l2.09 6.26L20 10l-5 4.87L16.18 22 12 18.77 7.82 22 9 14.87 4 10l5.91-1.74z" />
|
||||||
|
</svg>
|
||||||
|
Administrador
|
||||||
|
</span>
|
||||||
|
) : (
|
||||||
|
<span className="inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium bg-slate-100 text-slate-600">
|
||||||
|
Estándar
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td className="px-5 py-4">
|
||||||
|
<span className="inline-flex items-center gap-1 text-sm text-slate-600">
|
||||||
|
<svg className="w-3.5 h-3.5 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
{permCount(role)}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
<td className="px-5 py-4 text-right">
|
||||||
|
<div className="flex items-center justify-end gap-2">
|
||||||
|
<button
|
||||||
|
onClick={() => navigate(`/profiles/${role.id}/edit`)}
|
||||||
|
className="inline-flex items-center gap-1 px-3 py-1.5 text-xs font-medium text-blue-700 bg-blue-50 hover:bg-blue-100 rounded-lg border border-blue-200 transition-colors duration-150"
|
||||||
|
>
|
||||||
|
<svg className="w-3.5 h-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
|
||||||
|
</svg>
|
||||||
|
Editar
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => handleDeleteClick(role)}
|
||||||
|
disabled={role.is_admin_role}
|
||||||
|
title={role.is_admin_role ? 'El perfil de administrador no puede eliminarse' : 'Eliminar perfil'}
|
||||||
|
className="inline-flex items-center gap-1 px-3 py-1.5 text-xs font-medium text-red-600 bg-red-50 hover:bg-red-100 rounded-lg border border-red-200 transition-colors duration-150 disabled:opacity-40 disabled:cursor-not-allowed"
|
||||||
|
>
|
||||||
|
<svg className="w-3.5 h-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
||||||
|
</svg>
|
||||||
|
Eliminar
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Contador */}
|
||||||
|
{!loading && filtered.length > 0 && (
|
||||||
|
<p className="mt-3 text-xs text-slate-400 text-right">
|
||||||
|
{filtered.length} perfil{filtered.length !== 1 ? 'es' : ''}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Modal confirmar eliminación */}
|
||||||
|
{showDeleteModal && roleToDelete && (
|
||||||
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/40 backdrop-blur-sm p-4">
|
||||||
|
<div className="bg-white rounded-2xl shadow-2xl max-w-md w-full p-6">
|
||||||
|
<div className="flex items-center gap-3 mb-4">
|
||||||
|
<div className="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center flex-shrink-0">
|
||||||
|
<svg className="w-5 h-5 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L3.07 16.5c-.77.833.192 2.5 1.732 2.5z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-base font-semibold text-slate-800">Eliminar perfil</h3>
|
||||||
|
<p className="text-xs text-slate-500">Esta acción no se puede deshacer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p className="text-sm text-slate-600 mb-6">
|
||||||
|
¿Confirmas eliminar el perfil <span className="font-semibold text-slate-800">"{roleToDelete.nombre}"</span>?
|
||||||
|
Los usuarios con este perfil perderán los permisos asociados.
|
||||||
|
</p>
|
||||||
|
<div className="flex gap-3 justify-end">
|
||||||
|
<button
|
||||||
|
onClick={() => { setShowDeleteModal(false); setRoleToDelete(null); }}
|
||||||
|
disabled={deleting}
|
||||||
|
className="px-4 py-2 text-sm font-medium text-slate-700 bg-white border border-slate-300 rounded-lg hover:bg-slate-50 transition-colors disabled:opacity-50"
|
||||||
|
>
|
||||||
|
Cancelar
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={handleDeleteConfirm}
|
||||||
|
disabled={deleting}
|
||||||
|
className="px-4 py-2 text-sm font-medium text-white bg-red-600 hover:bg-red-700 rounded-lg transition-colors disabled:opacity-50 flex items-center gap-2"
|
||||||
|
>
|
||||||
|
{deleting && <div className="animate-spin rounded-full h-3.5 w-3.5 border-b-2 border-white" />}
|
||||||
|
Eliminar
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ const fetchCurrentUserWithAuth = async () => {
|
|||||||
};
|
};
|
||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
import { useNotification } from '../context/NotificationContext';
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
import { extractApiError } from '../api/apiError';
|
||||||
import datastageModelsData from '../data/datastageModels.json';
|
import datastageModelsData from '../data/datastageModels.json';
|
||||||
import pedimentosModelsData from '../data/pedimentosModels.json';
|
import pedimentosModelsData from '../data/pedimentosModels.json';
|
||||||
|
|
||||||
@@ -42,32 +43,11 @@ if (typeof document !== 'undefined' && !document.getElementById('reports-animati
|
|||||||
document.head.appendChild(style);
|
document.head.appendChild(style);
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleDownloadReport = async (reportId) => {
|
|
||||||
try {
|
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/report-document-download/${reportId}/`;
|
|
||||||
const res = await fetchWithAuth(url);
|
|
||||||
if (!res.ok) throw new Error('Error al descargar el reporte');
|
|
||||||
const blob = await res.blob();
|
|
||||||
let filename = `reporte_${reportId}.csv`;
|
|
||||||
const disposition = res.headers.get('Content-Disposition');
|
|
||||||
if (disposition && disposition.includes('filename=')) {
|
|
||||||
filename = disposition.split('filename=')[1].replace(/"/g, '').trim();
|
|
||||||
}
|
|
||||||
const link = document.createElement('a');
|
|
||||||
link.href = window.URL.createObjectURL(blob);
|
|
||||||
link.download = filename;
|
|
||||||
document.body.appendChild(link);
|
|
||||||
link.click();
|
|
||||||
document.body.removeChild(link);
|
|
||||||
} catch (err) {
|
|
||||||
alert('No se pudo descargar el reporte.');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function Reports() {
|
export default function Reports() {
|
||||||
// Estado para organizacion_id
|
// Estado para organizacion_id
|
||||||
const [organizacionId, setOrganizacionId] = useState('');
|
const [organizacionId, setOrganizacionId] = useState('');
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
async function fetchOrgId() {
|
async function fetchOrgId() {
|
||||||
try {
|
try {
|
||||||
@@ -81,10 +61,11 @@ export default function Reports() {
|
|||||||
}
|
}
|
||||||
fetchOrgId();
|
fetchOrgId();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// Handler for Generar Reporte in Cumplimiento tab
|
// Handler for Generar Reporte in Cumplimiento tab
|
||||||
const handleGenerarReporteCumplimiento = async () => {
|
const handleGenerarReporteCumplimiento = async () => {
|
||||||
if (!organizacionId) {
|
if (!organizacionId) {
|
||||||
alert('No se pudo obtener el organizacion_id. Intenta de nuevo más tarde.');
|
showMessage('No se pudo obtener el ID de organización. Intenta de nuevo más tarde.', 'warning');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Build query params from filtersCumplimiento and add organizacion_id
|
// Build query params from filtersCumplimiento and add organizacion_id
|
||||||
@@ -96,11 +77,13 @@ export default function Reports() {
|
|||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/table-summary/${params ? `?${params}` : ''}`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/table-summary/${params ? `?${params}` : ''}`;
|
||||||
try {
|
try {
|
||||||
const res = await fetchWithAuth(url);
|
const res = await fetchWithAuth(url);
|
||||||
const data = await res.json();
|
if (!res.ok) {
|
||||||
if (!res.ok) throw new Error('Error al generar el reporte');
|
const errMsg = await extractApiError(res);
|
||||||
alert('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.');
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
|
showMessage('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.', 'success');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('No se pudo generar el reporte.');
|
showMessage(err.message || 'No se pudo generar el reporte', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
// Filtros replicados de TableroAlmacenamiento
|
// Filtros replicados de TableroAlmacenamiento
|
||||||
@@ -142,8 +125,8 @@ export default function Reports() {
|
|||||||
// Build query params from filtersCumplimiento and add organizacion_id
|
// Build query params from filtersCumplimiento and add organizacion_id
|
||||||
const paramsObj = { ...filtersControlPedimento };
|
const paramsObj = { ...filtersControlPedimento };
|
||||||
|
|
||||||
if(paramsObj.organizacion_id == ''){
|
if (paramsObj.organizacion_id === '') {
|
||||||
alert('No se pudo obtener el organizacion_id. Selecciona tu organizacion para intenta de nuevo.');
|
showMessage('Selecciona tu organización antes de generar el reporte.', 'warning');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,11 +137,13 @@ export default function Reports() {
|
|||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/control-pedimento/${params ? `?${params}` : ''}`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/control-pedimento/${params ? `?${params}` : ''}`;
|
||||||
try {
|
try {
|
||||||
const res = await fetchWithAuth(url);
|
const res = await fetchWithAuth(url);
|
||||||
const data = await res.json();
|
if (!res.ok) {
|
||||||
if (!res.ok) throw new Error('Error al generar el reporte');
|
const errMsg = await extractApiError(res);
|
||||||
alert('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.');
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
|
showMessage('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.', 'success');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('No se pudo generar el reporte.');
|
showMessage(err.message || 'No se pudo generar el reporte', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -188,6 +173,31 @@ export default function Reports() {
|
|||||||
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
||||||
const { showMessage } = useNotification();
|
const { showMessage } = useNotification();
|
||||||
|
|
||||||
|
const handleDownloadReport = async (reportId) => {
|
||||||
|
try {
|
||||||
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/report-document-download/${reportId}/`;
|
||||||
|
const res = await fetchWithAuth(url);
|
||||||
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
|
const blob = await res.blob();
|
||||||
|
let filename = `reporte_${reportId}.csv`;
|
||||||
|
const disposition = res.headers.get('Content-Disposition');
|
||||||
|
if (disposition && disposition.includes('filename=')) {
|
||||||
|
filename = disposition.split('filename=')[1].replace(/"/g, '').trim();
|
||||||
|
}
|
||||||
|
const link = document.createElement('a');
|
||||||
|
link.href = window.URL.createObjectURL(blob);
|
||||||
|
link.download = filename;
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
document.body.removeChild(link);
|
||||||
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'No se pudo descargar el reporte', 'error');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const [isExporting, setIsExporting] = useState(false);
|
const [isExporting, setIsExporting] = useState(false);
|
||||||
const [exportFormat, setExportFormat] = useState('excel');
|
const [exportFormat, setExportFormat] = useState('excel');
|
||||||
const [showExportSuccess, setShowExportSuccess] = useState(false);
|
const [showExportSuccess, setShowExportSuccess] = useState(false);
|
||||||
@@ -196,6 +206,8 @@ export default function Reports() {
|
|||||||
const [tourStep, setTourStep] = useState(0);
|
const [tourStep, setTourStep] = useState(0);
|
||||||
|
|
||||||
const [organizaciones, setOrganizaciones] = useState([]);
|
const [organizaciones, setOrganizaciones] = useState([]);
|
||||||
|
const [importadores, setImportadores] = useState([]);
|
||||||
|
const [rfcOptions, setRfcOptions] = useState([]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const fetchOrganizaciones = async () => {
|
const fetchOrganizaciones = async () => {
|
||||||
@@ -213,6 +225,23 @@ export default function Reports() {
|
|||||||
fetchOrganizaciones();
|
fetchOrganizaciones();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchImportadores = async () => {
|
||||||
|
try {
|
||||||
|
const res = await fetch(
|
||||||
|
`${import.meta.env.VITE_EFC_API_URL}/customs/importadores/`,
|
||||||
|
{ method: 'GET', headers: { 'Authorization': `Bearer ${localStorage.getItem('access')}` }
|
||||||
|
});
|
||||||
|
const data = await res.json();
|
||||||
|
setImportadores(data);
|
||||||
|
} catch {
|
||||||
|
console.error('Error fetching importadores:', err);
|
||||||
|
setImportadores([]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
fetchImportadores();
|
||||||
|
}, []);
|
||||||
|
|
||||||
const [globalFilters, setGlobalFilters] = useState({
|
const [globalFilters, setGlobalFilters] = useState({
|
||||||
rfc: '',
|
rfc: '',
|
||||||
fecha_pago_desde: '',
|
fecha_pago_desde: '',
|
||||||
@@ -222,6 +251,27 @@ export default function Reports() {
|
|||||||
pedimento: ''
|
pedimento: ''
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Cargar RFCs cuando cambia la organización seleccionada en filtros globales
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchRfcs = async () => {
|
||||||
|
if (!globalFilters.organizacion) {
|
||||||
|
setRfcOptions([]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/exportmodel/datastage/?organizacion=${globalFilters.organizacion}`;
|
||||||
|
const res = await fetchWithAuth(url);
|
||||||
|
if (!res.ok) throw new Error('Error al obtener RFCs');
|
||||||
|
const data = await res.json();
|
||||||
|
setRfcOptions(data.rfcs || []);
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error fetching RFCs:', err);
|
||||||
|
setRfcOptions([]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
fetchRfcs();
|
||||||
|
}, [globalFilters.organizacion]);
|
||||||
|
|
||||||
const renderGlobalFilters = () => (
|
const renderGlobalFilters = () => (
|
||||||
<div className="mb-6">
|
<div className="mb-6">
|
||||||
<div className="bg-white rounded-xl shadow-lg overflow-hidden border border-blue-100">
|
<div className="bg-white rounded-xl shadow-lg overflow-hidden border border-blue-100">
|
||||||
@@ -240,13 +290,46 @@ export default function Reports() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="p-4">
|
<div className="p-4">
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
|
||||||
|
{/* Filtro por Organización */}
|
||||||
|
<div className="group">
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
Organización
|
||||||
|
</label>
|
||||||
|
<div className="relative rounded-lg shadow-sm">
|
||||||
|
<select
|
||||||
|
value={globalFilters.organizacion || ''}
|
||||||
|
onChange={(e) => setGlobalFilters(prev => ({
|
||||||
|
...prev,
|
||||||
|
organizacion: e.target.value,
|
||||||
|
rfc: ''
|
||||||
|
}))}
|
||||||
|
className="block w-full rounded-lg border-gray-300 pl-3 pr-10 py-2.5 text-gray-900 placeholder-gray-500
|
||||||
|
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||||
|
transition-all duration-200 bg-white appearance-none"
|
||||||
|
>
|
||||||
|
<option value="" disabled>Selecciona una organización</option>
|
||||||
|
{organizaciones.results && organizaciones.results.map(org => (
|
||||||
|
<option key={org.id} value={org.id}>
|
||||||
|
{org.nombre}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
|
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||||
|
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Filtro por RFC */}
|
{/* Filtro por RFC */}
|
||||||
<div className="group">
|
<div className="group">
|
||||||
<label className="block text-sm font-medium text-gray-700 mb-1">
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
RFC
|
RFC
|
||||||
</label>
|
</label>
|
||||||
|
{/* modificar de input a select */}
|
||||||
<div className="relative rounded-lg shadow-sm">
|
<div className="relative rounded-lg shadow-sm">
|
||||||
<input
|
{/* <input
|
||||||
type="text"
|
type="text"
|
||||||
value={globalFilters.rfc || ''}
|
value={globalFilters.rfc || ''}
|
||||||
onChange={(e) => setGlobalFilters(prev => ({
|
onChange={(e) => setGlobalFilters(prev => ({
|
||||||
@@ -257,7 +340,23 @@ export default function Reports() {
|
|||||||
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||||
transition-all duration-200 bg-white"
|
transition-all duration-200 bg-white"
|
||||||
placeholder="Ej: ABC123456789"
|
placeholder="Ej: ABC123456789"
|
||||||
/>
|
/> */}
|
||||||
|
<select
|
||||||
|
name="rfc"
|
||||||
|
value={globalFilters.rfc || ''}
|
||||||
|
onChange={(e) => setGlobalFilters(prev => ({
|
||||||
|
...prev,
|
||||||
|
rfc: e.target.value
|
||||||
|
}))}
|
||||||
|
className="w-full px-3 py-2 border border-green-300 rounded-md shadow-sm focus:ring-2 focus:ring-green-500 focus:border-green-500 transition-all duration-200 bg-white text-slate-900 text-sm font-mono uppercase"
|
||||||
|
style={{ textTransform: 'uppercase' }}
|
||||||
|
disabled={!globalFilters.organizacion}
|
||||||
|
>
|
||||||
|
<option value="">Todos los RFC</option>
|
||||||
|
{rfcOptions.map(rfc => (
|
||||||
|
<option key={rfc} value={rfc}>{rfc}</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||||
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
||||||
@@ -367,37 +466,6 @@ export default function Reports() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Filtro por Organización */}
|
|
||||||
<div className="group">
|
|
||||||
<label className="block text-sm font-medium text-gray-700 mb-1">
|
|
||||||
Organización
|
|
||||||
</label>
|
|
||||||
<div className="relative rounded-lg shadow-sm">
|
|
||||||
<select
|
|
||||||
value={globalFilters.organizacion || ''}
|
|
||||||
onChange={(e) => setGlobalFilters(prev => ({
|
|
||||||
...prev,
|
|
||||||
organizacion: e.target.value
|
|
||||||
}))}
|
|
||||||
className="block w-full rounded-lg border-gray-300 pl-3 pr-10 py-2.5 text-gray-900 placeholder-gray-500
|
|
||||||
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
|
||||||
transition-all duration-200 bg-white appearance-none"
|
|
||||||
>
|
|
||||||
<option value="">Todas las organizaciones</option>
|
|
||||||
{organizaciones.results && organizaciones.results.map(org => (
|
|
||||||
<option key={org.id} value={org.id}>
|
|
||||||
{org.nombre} {/* Usar el campo 'nombre' que sí existe */}
|
|
||||||
</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
|
||||||
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Botón para limpiar filtros globales */}
|
{/* Botón para limpiar filtros globales */}
|
||||||
@@ -769,7 +837,12 @@ export default function Reports() {
|
|||||||
.map(([modelo]) => modelo);
|
.map(([modelo]) => modelo);
|
||||||
|
|
||||||
if (modelosConCampos.length === 0) {
|
if (modelosConCampos.length === 0) {
|
||||||
alert('Por favor selecciona al menos un campo en algún modelo');
|
showMessage('Por favor selecciona al menos un campo en algún modelo', 'error');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!globalFilters.organizacion) {
|
||||||
|
showMessage('Debes seleccionar una organización antes de generar el reporte', 'error');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
import fetchWithAuth from '../fetchWithAuth';
|
import fetchWithAuth from '../fetchWithAuth';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
import { extractApiError } from '../api/apiError';
|
||||||
const initialFilters = {
|
const initialFilters = {
|
||||||
pedimento_app: '',
|
pedimento_app: '',
|
||||||
aduana: '',
|
aduana: '',
|
||||||
@@ -12,6 +14,7 @@ const initialFilters = {
|
|||||||
contribuyente__rfc: '',
|
contribuyente__rfc: '',
|
||||||
};
|
};
|
||||||
export default function TableroAlmacenamiento() {
|
export default function TableroAlmacenamiento() {
|
||||||
|
const { showMessage } = useNotification();
|
||||||
const [filters, setFilters] = useState(initialFilters);
|
const [filters, setFilters] = useState(initialFilters);
|
||||||
const [summary, setSummary] = useState(null);
|
const [summary, setSummary] = useState(null);
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
@@ -25,10 +28,13 @@ export default function TableroAlmacenamiento() {
|
|||||||
.join('&');
|
.join('&');
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/table-summary/${params ? `?${params}` : ''}`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/table-summary/${params ? `?${params}` : ''}`;
|
||||||
const res = await fetchWithAuth(url, { method: 'POST' });
|
const res = await fetchWithAuth(url, { method: 'POST' });
|
||||||
if (!res.ok) throw new Error('Error al generar el reporte');
|
if (!res.ok) {
|
||||||
alert('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.');
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
|
showMessage('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.', 'success');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('No se pudo generar el reporte.');
|
showMessage(err.message || 'No se pudo generar el reporte', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -36,7 +42,10 @@ export default function TableroAlmacenamiento() {
|
|||||||
try {
|
try {
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/report-document-download/${reportId}/`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/report-document-download/${reportId}/`;
|
||||||
const res = await fetchWithAuth(url);
|
const res = await fetchWithAuth(url);
|
||||||
if (!res.ok) throw new Error('Error al descargar el reporte');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
const blob = await res.blob();
|
const blob = await res.blob();
|
||||||
let filename = `reporte_${reportId}.csv`;
|
let filename = `reporte_${reportId}.csv`;
|
||||||
const disposition = res.headers.get('Content-Disposition');
|
const disposition = res.headers.get('Content-Disposition');
|
||||||
@@ -50,7 +59,7 @@ export default function TableroAlmacenamiento() {
|
|||||||
link.click();
|
link.click();
|
||||||
document.body.removeChild(link);
|
document.body.removeChild(link);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('No se pudo descargar el reporte.');
|
showMessage(err.message || 'No se pudo descargar el reporte', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -64,9 +73,14 @@ export default function TableroAlmacenamiento() {
|
|||||||
.join('&');
|
.join('&');
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/dashboard/summary/${params ? `?${params}` : ''}`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/dashboard/summary/${params ? `?${params}` : ''}`;
|
||||||
const res = await fetchWithAuth(url);
|
const res = await fetchWithAuth(url);
|
||||||
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
setSummary(data);
|
setSummary(data);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'Error al cargar el resumen', 'error');
|
||||||
setSummary(null);
|
setSummary(null);
|
||||||
}
|
}
|
||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
@@ -82,6 +96,7 @@ export default function TableroAlmacenamiento() {
|
|||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
setReports(data);
|
setReports(data);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
showMessage(err.message || 'Error al cargar el historial de reportes', 'error');
|
||||||
setReports([]);
|
setReports([]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -147,7 +162,7 @@ export default function TableroAlmacenamiento() {
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="bg-green-600 text-white px-4 py-2 rounded-md hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2 transition-colors"
|
className="bg-green-600 text-white px-4 py-2 rounded-md hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2 transition-colors"
|
||||||
onClick={() => alert('Generar reporte (implementación pendiente)')}
|
onClick={handleGenerateReport}
|
||||||
>
|
>
|
||||||
Generar Reporte
|
Generar Reporte
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
855
src/pages/UserForm.jsx
Normal file
855
src/pages/UserForm.jsx
Normal file
@@ -0,0 +1,855 @@
|
|||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import { useNavigate, useParams, useSearchParams } from 'react-router-dom';
|
||||||
|
import { createUser, updateUser } from '../api/users.ts';
|
||||||
|
import { fetchRoles, fetchUserRoles, assignUserRole, revokeUserRole } from '../api/rbac';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
|
||||||
|
const initialForm = {
|
||||||
|
username: '',
|
||||||
|
email: '',
|
||||||
|
first_name: '',
|
||||||
|
last_name: '',
|
||||||
|
password: '',
|
||||||
|
confirmPassword: '',
|
||||||
|
rfc: [],
|
||||||
|
userType: 'agente', // 'agente' | 'importador'
|
||||||
|
is_active: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function UserForm() {
|
||||||
|
const { id } = useParams();
|
||||||
|
const isEditing = Boolean(id);
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const [searchParams] = useSearchParams();
|
||||||
|
const { showMessage } = useNotification();
|
||||||
|
|
||||||
|
const initialType = searchParams.get('type') === 'importador' ? 'importador' : 'agente';
|
||||||
|
|
||||||
|
const [form, setForm] = useState({ ...initialForm, userType: initialType });
|
||||||
|
const [importadores, setImportadores] = useState([]);
|
||||||
|
const [submitting, setSubmitting] = useState(false);
|
||||||
|
const [loadingUser, setLoadingUser] = useState(isEditing);
|
||||||
|
|
||||||
|
// RBAC: roles disponibles de la organización
|
||||||
|
const [availableRoles, setAvailableRoles] = useState([]);
|
||||||
|
const [loadingRoles, setLoadingRoles] = useState(true);
|
||||||
|
// IDs de roles seleccionados en el formulario
|
||||||
|
const [selectedRoleIds, setSelectedRoleIds] = useState([]);
|
||||||
|
// Asignaciones actuales del usuario (para calcular diff en edición): [{ id, role }]
|
||||||
|
const [currentUserRoles, setCurrentUserRoles] = useState([]);
|
||||||
|
|
||||||
|
// Validación de contraseña
|
||||||
|
const [passwordValidation, setPasswordValidation] = useState({
|
||||||
|
length: false, uppercase: false, lowercase: false, number: false, special: false,
|
||||||
|
});
|
||||||
|
const [showPasswordValidation, setShowPasswordValidation] = useState(false);
|
||||||
|
const [showPassword, setShowPassword] = useState(false);
|
||||||
|
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
|
||||||
|
const [passwordsMatch, setPasswordsMatch] = useState(true);
|
||||||
|
const [showPasswordMatchValidation, setShowPasswordMatchValidation] = useState(false);
|
||||||
|
|
||||||
|
// Inyectar animaciones
|
||||||
|
useEffect(() => {
|
||||||
|
if (typeof window !== 'undefined' && !document.getElementById('users-animations')) {
|
||||||
|
const style = document.createElement('style');
|
||||||
|
style.id = 'users-animations';
|
||||||
|
style.innerHTML = `
|
||||||
|
@keyframes fadeInUpUsers {
|
||||||
|
0% { opacity: 0; transform: translateY(32px); }
|
||||||
|
100% { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
.fade-in-up-users { animation: fadeInUpUsers 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
|
||||||
|
@keyframes bounce-slow {
|
||||||
|
0%, 100% { transform: translateY(0); }
|
||||||
|
50% { transform: translateY(-8px); }
|
||||||
|
}
|
||||||
|
.animate-bounce-slow { animation: bounce-slow 2.2s infinite; }
|
||||||
|
`;
|
||||||
|
document.head.appendChild(style);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Cargar roles disponibles de la organización
|
||||||
|
useEffect(() => {
|
||||||
|
fetchRoles()
|
||||||
|
.then(data => {
|
||||||
|
const list = Array.isArray(data) ? data : (data?.results ?? []);
|
||||||
|
setAvailableRoles(list);
|
||||||
|
// Preselección por tipo inicial solo en creación
|
||||||
|
if (!isEditing) {
|
||||||
|
setSelectedRoleIds(getDefaultRoleIds(list, initialType));
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
showMessage(err.message || 'Error al cargar los perfiles disponibles', 'error');
|
||||||
|
setAvailableRoles([]);
|
||||||
|
})
|
||||||
|
.finally(() => setLoadingRoles(false));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Cargar importadores
|
||||||
|
useEffect(() => {
|
||||||
|
const access = localStorage.getItem('access');
|
||||||
|
if (!access) { window.location.href = '/login'; return; }
|
||||||
|
fetch(`${import.meta.env.VITE_EFC_API_URL}/customs/importadores/`, {
|
||||||
|
headers: { Authorization: `Bearer ${access}` },
|
||||||
|
})
|
||||||
|
.then(r => {
|
||||||
|
if (!r.ok) throw new Error(`Error ${r.status} al cargar importadores`);
|
||||||
|
return r.json();
|
||||||
|
})
|
||||||
|
.then(data => setImportadores(Array.isArray(data) ? data : []))
|
||||||
|
.catch(err => {
|
||||||
|
showMessage(err.message || 'Error al cargar el catálogo de importadores', 'error');
|
||||||
|
setImportadores([]);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Cargar datos del usuario si es edición
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isEditing) return;
|
||||||
|
const access = localStorage.getItem('access');
|
||||||
|
|
||||||
|
Promise.all([
|
||||||
|
fetch(`${import.meta.env.VITE_EFC_API_URL}/user/users/${id}/`, {
|
||||||
|
headers: { Authorization: `Bearer ${access}` },
|
||||||
|
}).then(r => r.json()),
|
||||||
|
fetchUserRoles(id).catch(() => []),
|
||||||
|
])
|
||||||
|
.then(([data, userRoles]) => {
|
||||||
|
const isImportador = data.is_importador === true;
|
||||||
|
setForm({
|
||||||
|
username: data.username || '',
|
||||||
|
email: data.email || '',
|
||||||
|
first_name: data.first_name || '',
|
||||||
|
last_name: data.last_name || '',
|
||||||
|
password: '',
|
||||||
|
confirmPassword: '',
|
||||||
|
rfc: Array.isArray(data.rfc) ? data.rfc : (data.rfc ? [data.rfc] : []),
|
||||||
|
userType: isImportador ? 'importador' : 'agente',
|
||||||
|
is_active: data.is_active !== false,
|
||||||
|
});
|
||||||
|
|
||||||
|
// user-roles respuesta: [{ id, user: {...}, role: { id, nombre, ... }, created_at }]
|
||||||
|
const normalized = (Array.isArray(userRoles) ? userRoles : (userRoles?.results ?? []))
|
||||||
|
.map(ur => ({
|
||||||
|
id: ur.id,
|
||||||
|
role: typeof ur.role === 'object' ? ur.role?.id : ur.role,
|
||||||
|
}))
|
||||||
|
.filter(ur => ur.role);
|
||||||
|
|
||||||
|
setCurrentUserRoles(normalized);
|
||||||
|
setSelectedRoleIds(normalized.map(ur => ur.role));
|
||||||
|
setLoadingUser(false);
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
showMessage('Error al cargar datos del usuario', 'error');
|
||||||
|
setLoadingUser(false);
|
||||||
|
});
|
||||||
|
}, [id, isEditing, showMessage]);
|
||||||
|
|
||||||
|
// Preseleccionar roles por defecto según tipo de usuario
|
||||||
|
function getDefaultRoleIds(roles, type) {
|
||||||
|
const keyword = type === 'importador' ? 'importador' : 'agente';
|
||||||
|
const matches = roles
|
||||||
|
.filter(r => r.nombre?.toLowerCase().includes(keyword))
|
||||||
|
.map(r => r.id);
|
||||||
|
return matches;
|
||||||
|
}
|
||||||
|
|
||||||
|
const validatePassword = (password) => {
|
||||||
|
const v = {
|
||||||
|
length: password.length >= 8,
|
||||||
|
uppercase: /[A-Z]/.test(password),
|
||||||
|
lowercase: /[a-z]/.test(password),
|
||||||
|
number: /\d/.test(password),
|
||||||
|
special: /[!@#$%^&*(),.?":{}|<>]/.test(password),
|
||||||
|
};
|
||||||
|
setPasswordValidation(v);
|
||||||
|
setShowPasswordValidation(password.length > 0);
|
||||||
|
};
|
||||||
|
|
||||||
|
const validatePasswordMatch = (password, confirm) => {
|
||||||
|
setPasswordsMatch(password === confirm);
|
||||||
|
setShowPasswordMatchValidation(confirm.length > 0);
|
||||||
|
};
|
||||||
|
|
||||||
|
const isPasswordValid = () => Object.values(passwordValidation).every(Boolean);
|
||||||
|
|
||||||
|
const isFormValid = () => {
|
||||||
|
if (!isEditing) {
|
||||||
|
return isPasswordValid() && passwordsMatch &&
|
||||||
|
form.password.length > 0 && form.confirmPassword.length > 0;
|
||||||
|
}
|
||||||
|
if (form.password.length > 0) {
|
||||||
|
return isPasswordValid() && passwordsMatch && form.confirmPassword.length > 0;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleChange = (e) => {
|
||||||
|
const { name, value } = e.target;
|
||||||
|
setForm(prev => ({ ...prev, [name]: value }));
|
||||||
|
if (name === 'password') {
|
||||||
|
validatePassword(value);
|
||||||
|
if (form.confirmPassword) validatePasswordMatch(value, form.confirmPassword);
|
||||||
|
}
|
||||||
|
if (name === 'confirmPassword') validatePasswordMatch(form.password, value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleUserTypeChange = (type) => {
|
||||||
|
setForm(prev => ({
|
||||||
|
...prev,
|
||||||
|
userType: type,
|
||||||
|
rfc: type === 'agente' ? [] : prev.rfc,
|
||||||
|
}));
|
||||||
|
// Preseleccionar roles según tipo
|
||||||
|
setSelectedRoleIds(getDefaultRoleIds(availableRoles, type));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleRoleToggle = (roleId) => {
|
||||||
|
setSelectedRoleIds(prev =>
|
||||||
|
prev.includes(roleId)
|
||||||
|
? prev.filter(id => id !== roleId)
|
||||||
|
: [...prev, roleId]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleRfcToggle = (rfc) => {
|
||||||
|
setForm(prev => {
|
||||||
|
const current = Array.isArray(prev.rfc) ? prev.rfc : [];
|
||||||
|
const next = current.includes(rfc)
|
||||||
|
? current.filter(r => r !== rfc)
|
||||||
|
: [...current, rfc];
|
||||||
|
return { ...prev, rfc: next };
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// Sincronizar roles: calcular diff y llamar assign/revoke
|
||||||
|
const syncRoles = async (userId) => {
|
||||||
|
const currentRoleIds = currentUserRoles.map(ur => ur.role);
|
||||||
|
const toAdd = selectedRoleIds.filter(id => !currentRoleIds.includes(id));
|
||||||
|
const toRemove = currentUserRoles.filter(ur => !selectedRoleIds.includes(ur.role));
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
...toAdd.map(roleId => assignUserRole(userId, roleId).catch(() => null)),
|
||||||
|
...toRemove.map(ur => revokeUserRole(ur.id).catch(() => null)),
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSubmit = async (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!isFormValid()) return;
|
||||||
|
setSubmitting(true);
|
||||||
|
try {
|
||||||
|
const payload = {
|
||||||
|
username: form.username,
|
||||||
|
email: form.email,
|
||||||
|
first_name: form.first_name,
|
||||||
|
last_name: form.last_name,
|
||||||
|
is_importador: form.userType === 'importador',
|
||||||
|
is_active: form.is_active,
|
||||||
|
};
|
||||||
|
if (form.userType === 'importador') {
|
||||||
|
payload.rfc = Array.isArray(form.rfc) ? form.rfc : [];
|
||||||
|
}
|
||||||
|
if (form.password) payload.password = form.password;
|
||||||
|
|
||||||
|
if (isEditing) {
|
||||||
|
await updateUser(id, payload);
|
||||||
|
await syncRoles(id);
|
||||||
|
showMessage('Usuario actualizado exitosamente', 'success');
|
||||||
|
} else {
|
||||||
|
const newUser = await createUser(payload);
|
||||||
|
const newUserId = newUser?.id;
|
||||||
|
if (newUserId && selectedRoleIds.length > 0) {
|
||||||
|
await Promise.all(
|
||||||
|
selectedRoleIds.map(roleId => assignUserRole(newUserId, roleId).catch(() => null))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
showMessage('Usuario creado exitosamente', 'success');
|
||||||
|
}
|
||||||
|
navigate('/users');
|
||||||
|
} catch (err) {
|
||||||
|
showMessage(err.message, 'error');
|
||||||
|
} finally {
|
||||||
|
setSubmitting(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const isImportador = form.userType === 'importador';
|
||||||
|
|
||||||
|
if (loadingUser) {
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen p-4 sm:p-6 bg-gradient-to-br from-gray-50 to-blue-50 flex items-center justify-center">
|
||||||
|
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen p-4 sm:p-6 bg-gradient-to-br from-gray-50 to-blue-50">
|
||||||
|
<div className="max-w-3xl mx-auto">
|
||||||
|
|
||||||
|
{/* Header */}
|
||||||
|
<div className="mb-8 relative overflow-hidden rounded-2xl shadow bg-gradient-to-r from-blue-600 via-blue-700 to-blue-800 border border-blue-200 p-6 sm:p-8 flex flex-col sm:flex-row items-start sm:items-center gap-4 sm:gap-6">
|
||||||
|
<div className="flex-shrink-0 bg-white/20 backdrop-blur-sm rounded-full p-3 sm:p-4 shadow-lg animate-bounce-slow">
|
||||||
|
<svg className="h-8 w-8 sm:h-10 sm:w-10 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h1 className="text-2xl sm:text-3xl font-extrabold text-white tracking-tight mb-1">
|
||||||
|
{isEditing ? 'Editar Usuario' : 'Nuevo Usuario'}
|
||||||
|
</h1>
|
||||||
|
<p className="text-sm sm:text-base text-white/80 font-medium">
|
||||||
|
{isEditing ? 'Modifica los datos del usuario seleccionado' : 'Registro en el Sistema de Gestión de Usuarios'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => navigate('/users')}
|
||||||
|
className="flex-shrink-0 inline-flex items-center gap-2 px-4 py-2 bg-white/20 hover:bg-white/30 text-white text-sm font-medium rounded-lg border border-white/30 transition-all duration-200"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" />
|
||||||
|
</svg>
|
||||||
|
Regresar
|
||||||
|
</button>
|
||||||
|
<div className="absolute -top-10 -right-10 opacity-20 pointer-events-none select-none">
|
||||||
|
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
|
||||||
|
<circle cx="60" cy="60" r="50" fill="white" fillOpacity="0.15" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form onSubmit={handleSubmit} className="space-y-6">
|
||||||
|
|
||||||
|
{/* Tipo de usuario — solo en creación */}
|
||||||
|
{!isEditing && (
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 p-6 fade-in-up-users">
|
||||||
|
<div className="flex items-center mb-4 pb-3 border-b border-gray-200">
|
||||||
|
<div className="bg-purple-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M8 9l4-4 4 4m0 6l-4 4-4-4" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Tipo de Usuario</h4>
|
||||||
|
<p className="text-xs text-slate-500">Define el rol principal del nuevo usuario</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => handleUserTypeChange('agente')}
|
||||||
|
className={`relative flex flex-col items-start p-4 rounded-xl border-2 transition-all duration-200 ${
|
||||||
|
!isImportador
|
||||||
|
? 'border-blue-500 bg-blue-50 shadow-md'
|
||||||
|
: 'border-gray-200 bg-white hover:border-blue-300 hover:bg-blue-50/50'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<div className={`w-10 h-10 rounded-lg flex items-center justify-center mb-3 ${!isImportador ? 'bg-blue-600' : 'bg-gray-200'}`}>
|
||||||
|
<svg className={`w-5 h-5 ${!isImportador ? 'text-white' : 'text-gray-500'}`} fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<span className={`text-sm font-semibold ${!isImportador ? 'text-blue-800' : 'text-gray-700'}`}>Agente Aduanal</span>
|
||||||
|
<span className="text-xs text-gray-500 mt-1">Gestión de trámites aduaneros</span>
|
||||||
|
{!isImportador && (
|
||||||
|
<div className="absolute top-3 right-3 w-5 h-5 bg-blue-600 rounded-full flex items-center justify-center">
|
||||||
|
<svg className="w-3 h-3 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 13l4 4L19 7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => handleUserTypeChange('importador')}
|
||||||
|
className={`relative flex flex-col items-start p-4 rounded-xl border-2 transition-all duration-200 ${
|
||||||
|
isImportador
|
||||||
|
? 'border-blue-500 bg-blue-50 shadow-md'
|
||||||
|
: 'border-gray-200 bg-white hover:border-blue-300 hover:bg-blue-50/50'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<div className={`w-10 h-10 rounded-lg flex items-center justify-center mb-3 ${isImportador ? 'bg-blue-600' : 'bg-gray-200'}`}>
|
||||||
|
<svg className={`w-5 h-5 ${isImportador ? 'text-white' : 'text-gray-500'}`} fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<span className={`text-sm font-semibold ${isImportador ? 'text-blue-800' : 'text-gray-700'}`}>Importador</span>
|
||||||
|
<span className="text-xs text-gray-500 mt-1">Empresa con RFCs asociados</span>
|
||||||
|
{isImportador && (
|
||||||
|
<div className="absolute top-3 right-3 w-5 h-5 bg-blue-600 rounded-full flex items-center justify-center">
|
||||||
|
<svg className="w-3 h-3 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 13l4 4L19 7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Información Personal */}
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 p-6 fade-in-up-users" style={{ animationDelay: '0.05s' }}>
|
||||||
|
<div className="flex items-center mb-4 pb-3 border-b border-gray-200">
|
||||||
|
<div className="bg-blue-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Información Personal</h4>
|
||||||
|
<p className="text-xs text-slate-500">Datos de identificación del usuario</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">
|
||||||
|
Nombre de usuario <span className="text-red-600">*</span>
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="username"
|
||||||
|
value={form.username}
|
||||||
|
onChange={handleChange}
|
||||||
|
required
|
||||||
|
className="w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-all duration-200 bg-white text-slate-900 placeholder-slate-400 text-sm"
|
||||||
|
placeholder="nombre_usuario"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">
|
||||||
|
Correo electrónico <span className="text-red-600">*</span>
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
name="email"
|
||||||
|
value={form.email}
|
||||||
|
onChange={handleChange}
|
||||||
|
required
|
||||||
|
className="w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-all duration-200 bg-white text-slate-900 placeholder-slate-400 text-sm"
|
||||||
|
placeholder="usuario@ejemplo.com"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">Nombre</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="first_name"
|
||||||
|
value={form.first_name}
|
||||||
|
onChange={handleChange}
|
||||||
|
className="w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-all duration-200 bg-white text-slate-900 placeholder-slate-400 text-sm"
|
||||||
|
placeholder="Nombre del usuario"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">Apellido</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="last_name"
|
||||||
|
value={form.last_name}
|
||||||
|
onChange={handleChange}
|
||||||
|
className="w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-all duration-200 bg-white text-slate-900 placeholder-slate-400 text-sm"
|
||||||
|
placeholder="Apellido del usuario"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* RFC — solo para importadores */}
|
||||||
|
{isImportador && (
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-blue-100 p-6 fade-in-up-users" style={{ animationDelay: '0.1s' }}>
|
||||||
|
<div className="flex items-center mb-4 pb-3 border-b border-blue-200">
|
||||||
|
<div className="bg-blue-700 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Información Fiscal</h4>
|
||||||
|
<p className="text-xs text-slate-500">RFCs de importadores asociados al usuario (puede ser más de uno)</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{importadores.length === 0 ? (
|
||||||
|
<p className="text-sm text-gray-500 italic">No hay importadores disponibles en el catálogo.</p>
|
||||||
|
) : (
|
||||||
|
<div className="flex flex-col sm:flex-row gap-3 items-stretch">
|
||||||
|
{/* Columna izquierda — disponibles */}
|
||||||
|
<div className="flex-1 flex flex-col min-w-0">
|
||||||
|
<div className="flex items-center justify-between mb-1.5">
|
||||||
|
<span className="text-xs font-semibold text-slate-600 uppercase tracking-wide">Disponibles</span>
|
||||||
|
<span className="text-xs text-slate-400 font-mono">
|
||||||
|
{importadores.filter(imp => !(Array.isArray(form.rfc) && form.rfc.includes(imp.rfc))).length}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="border border-slate-200 rounded-xl bg-slate-50 overflow-hidden flex flex-col" style={{ minHeight: '200px', maxHeight: '280px' }}>
|
||||||
|
<div className="overflow-y-auto flex-1">
|
||||||
|
{importadores.filter(imp => !(Array.isArray(form.rfc) && form.rfc.includes(imp.rfc))).length === 0 ? (
|
||||||
|
<div className="flex items-center justify-center h-full py-8 text-xs text-slate-400 italic">
|
||||||
|
Todos los RFC han sido asignados
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
importadores
|
||||||
|
.filter(imp => !(Array.isArray(form.rfc) && form.rfc.includes(imp.rfc)))
|
||||||
|
.map(imp => (
|
||||||
|
<div
|
||||||
|
key={imp.rfc}
|
||||||
|
onDoubleClick={() => handleRfcToggle(imp.rfc)}
|
||||||
|
className="flex items-center justify-between px-3 py-2 border-b border-slate-100 last:border-b-0 text-xs font-mono text-slate-700 hover:bg-blue-50 hover:text-blue-800 cursor-pointer select-none group transition-colors duration-100"
|
||||||
|
title="Doble clic para agregar"
|
||||||
|
>
|
||||||
|
<span className="uppercase truncate">{imp.rfc}</span>
|
||||||
|
<svg className="w-3.5 h-3.5 text-slate-300 group-hover:text-blue-400 flex-shrink-0 ml-2 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5l7 7-7 7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Botones centrales */}
|
||||||
|
<div className="flex sm:flex-col items-center justify-center gap-2 py-2 sm:py-0">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
title="Agregar todos"
|
||||||
|
onClick={() => setForm(prev => ({ ...prev, rfc: importadores.map(i => i.rfc) }))}
|
||||||
|
className="w-8 h-8 rounded-lg border border-slate-300 bg-white hover:bg-blue-50 hover:border-blue-400 flex items-center justify-center transition-colors shadow-sm"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4 text-slate-500 hover:text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13 5l7 7-7 7M5 5l7 7-7 7" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
title="Quitar todos"
|
||||||
|
onClick={() => setForm(prev => ({ ...prev, rfc: [] }))}
|
||||||
|
className="w-8 h-8 rounded-lg border border-slate-300 bg-white hover:bg-red-50 hover:border-red-400 flex items-center justify-center transition-colors shadow-sm"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4 text-slate-500 hover:text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M11 19l-7-7 7-7m8 14l-7-7 7-7" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Columna derecha — seleccionados */}
|
||||||
|
<div className="flex-1 flex flex-col min-w-0">
|
||||||
|
<div className="flex items-center justify-between mb-1.5">
|
||||||
|
<span className="text-xs font-semibold text-blue-700 uppercase tracking-wide">Asignados</span>
|
||||||
|
<span className="text-xs text-blue-500 font-mono font-semibold">
|
||||||
|
{Array.isArray(form.rfc) ? form.rfc.length : 0}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="border border-blue-200 rounded-xl bg-blue-50/40 overflow-hidden flex flex-col" style={{ minHeight: '200px', maxHeight: '280px' }}>
|
||||||
|
<div className="overflow-y-auto flex-1">
|
||||||
|
{!Array.isArray(form.rfc) || form.rfc.length === 0 ? (
|
||||||
|
<div className="flex items-center justify-center h-full py-8 text-xs text-slate-400 italic">
|
||||||
|
Sin RFC asignados
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
form.rfc.map(r => (
|
||||||
|
<div
|
||||||
|
key={r}
|
||||||
|
onDoubleClick={() => handleRfcToggle(r)}
|
||||||
|
className="flex items-center justify-between px-3 py-2 border-b border-blue-100 last:border-b-0 text-xs font-mono text-blue-800 hover:bg-red-50 hover:text-red-700 cursor-pointer select-none group transition-colors duration-100"
|
||||||
|
title="Doble clic para quitar"
|
||||||
|
>
|
||||||
|
<svg className="w-3.5 h-3.5 text-blue-300 group-hover:text-red-400 flex-shrink-0 mr-2 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M15 19l-7-7 7-7" />
|
||||||
|
</svg>
|
||||||
|
<span className="uppercase truncate flex-1">{r}</span>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Perfiles RBAC */}
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 p-6 fade-in-up-users" style={{ animationDelay: '0.15s' }}>
|
||||||
|
<div className="flex items-center justify-between mb-4 pb-3 border-b border-gray-200">
|
||||||
|
<div className="flex items-center">
|
||||||
|
<div className="bg-indigo-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Perfiles</h4>
|
||||||
|
<p className="text-xs text-slate-500">
|
||||||
|
Asigna los perfiles que tendrá este usuario en la organización
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{selectedRoleIds.length > 0 && (
|
||||||
|
<span className="text-xs text-indigo-600 font-semibold bg-indigo-50 px-2 py-0.5 rounded-full border border-indigo-200">
|
||||||
|
{selectedRoleIds.length} seleccionado{selectedRoleIds.length !== 1 ? 's' : ''}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loadingRoles ? (
|
||||||
|
<div className="flex items-center justify-center py-8">
|
||||||
|
<div className="animate-spin rounded-full h-6 w-6 border-b-2 border-indigo-600" />
|
||||||
|
</div>
|
||||||
|
) : availableRoles.length === 0 ? (
|
||||||
|
<div className="text-center py-8 text-slate-400">
|
||||||
|
<svg className="w-8 h-8 mx-auto mb-2 opacity-40" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
||||||
|
</svg>
|
||||||
|
<p className="text-xs">No hay perfiles disponibles en la organización</p>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-3">
|
||||||
|
{availableRoles.map(role => {
|
||||||
|
const active = selectedRoleIds.includes(role.id);
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
key={role.id}
|
||||||
|
type="button"
|
||||||
|
onClick={() => handleRoleToggle(role.id)}
|
||||||
|
className={`relative flex flex-col items-start p-3 rounded-xl border-2 text-left transition-all duration-200 ${
|
||||||
|
active
|
||||||
|
? 'border-indigo-500 bg-indigo-50'
|
||||||
|
: 'border-gray-200 bg-white hover:border-indigo-300 hover:bg-indigo-50/40'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<div className="flex items-center gap-2 w-full">
|
||||||
|
<div className={`w-6 h-6 rounded-md flex items-center justify-center flex-shrink-0 ${active ? 'bg-indigo-600' : 'bg-gray-100'}`}>
|
||||||
|
{role.is_admin_role ? (
|
||||||
|
<svg className={`w-3.5 h-3.5 ${active ? 'text-white' : 'text-amber-500'}`} fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M12 2l2.09 6.26L20 10l-5 4.87L16.18 22 12 18.77 7.82 22 9 14.87 4 10l5.91-1.74z" />
|
||||||
|
</svg>
|
||||||
|
) : (
|
||||||
|
<svg className={`w-3.5 h-3.5 ${active ? 'text-white' : 'text-gray-400'}`} fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<span className={`text-xs font-semibold truncate flex-1 ${active ? 'text-indigo-800' : 'text-gray-700'}`}>
|
||||||
|
{role.nombre}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{role.is_admin_role && (
|
||||||
|
<span className="mt-1.5 text-xs text-amber-600 font-medium">Administrador</span>
|
||||||
|
)}
|
||||||
|
{active && (
|
||||||
|
<div className="absolute top-2 right-2 w-4 h-4 bg-indigo-600 rounded-full flex items-center justify-center">
|
||||||
|
<svg className="w-2.5 h-2.5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 13l4 4L19 7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Credenciales */}
|
||||||
|
<div className="bg-white rounded-2xl shadow-lg border border-gray-100 p-6 fade-in-up-users" style={{ animationDelay: '0.2s' }}>
|
||||||
|
<div className="flex items-center mb-4 pb-3 border-b border-gray-200">
|
||||||
|
<div className="bg-red-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Credenciales de Acceso</h4>
|
||||||
|
<p className="text-xs text-slate-500">
|
||||||
|
{isEditing ? 'Deja en blanco para mantener la contraseña actual' : 'Configura la contraseña de acceso'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-4">
|
||||||
|
|
||||||
|
{/* Estado */}
|
||||||
|
<div className="flex items-center justify-between p-3 rounded-xl border border-slate-200 bg-slate-50">
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<div className={`w-8 h-8 rounded-lg flex items-center justify-center flex-shrink-0 ${form.is_active ? 'bg-blue-100' : 'bg-slate-200'}`}>
|
||||||
|
<svg className={`w-4 h-4 ${form.is_active ? 'text-blue-600' : 'text-slate-400'}`} fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={form.is_active ? 'M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z' : 'M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636'} />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className="text-xs font-semibold text-slate-700">Estado de la cuenta</p>
|
||||||
|
<p className={`text-xs ${form.is_active ? 'text-blue-600' : 'text-slate-400'}`}>
|
||||||
|
{form.is_active ? 'Activo — el usuario puede iniciar sesión' : 'Inactivo — acceso bloqueado'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => setForm(prev => ({ ...prev, is_active: !prev.is_active }))}
|
||||||
|
className={`relative inline-flex h-6 w-11 flex-shrink-0 rounded-full border-2 border-transparent transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 ${form.is_active ? 'bg-blue-600' : 'bg-slate-300'}`}
|
||||||
|
role="switch"
|
||||||
|
aria-checked={form.is_active}
|
||||||
|
>
|
||||||
|
<span className={`pointer-events-none inline-block h-5 w-5 rounded-full bg-white shadow ring-0 transition-transform duration-200 ${form.is_active ? 'translate-x-5' : 'translate-x-0'}`} />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Contraseña */}
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">
|
||||||
|
Contraseña {!isEditing && <span className="text-red-600">*</span>}
|
||||||
|
</label>
|
||||||
|
<div className="relative">
|
||||||
|
<input
|
||||||
|
type={showPassword ? 'text' : 'password'}
|
||||||
|
name="password"
|
||||||
|
value={form.password}
|
||||||
|
onChange={handleChange}
|
||||||
|
required={!isEditing}
|
||||||
|
className={`w-full px-3 py-2 pr-10 border rounded-md shadow-sm focus:ring-2 transition-all duration-200 bg-white text-slate-900 placeholder-slate-400 text-sm ${
|
||||||
|
showPasswordValidation && isPasswordValid()
|
||||||
|
? 'border-green-300 focus:ring-green-500 focus:border-green-500'
|
||||||
|
: showPasswordValidation
|
||||||
|
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
|
||||||
|
: 'border-slate-300 focus:ring-red-500 focus:border-red-500'
|
||||||
|
}`}
|
||||||
|
placeholder={isEditing ? 'Dejar vacío para mantener actual' : 'Contraseña segura del usuario'}
|
||||||
|
/>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => setShowPassword(v => !v)}
|
||||||
|
className="absolute inset-y-0 right-0 flex items-center pr-3 text-slate-400 hover:text-slate-600"
|
||||||
|
>
|
||||||
|
{showPassword ? (
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.878 9.878L8.464 8.464m1.414 1.414L21.536 21.536" />
|
||||||
|
</svg>
|
||||||
|
) : (
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{showPasswordValidation && (
|
||||||
|
<div className="mt-3 p-3 bg-slate-100 rounded-lg border">
|
||||||
|
<div className="flex items-center justify-between mb-2">
|
||||||
|
<span className="text-xs font-semibold text-slate-700">Requisitos de contraseña:</span>
|
||||||
|
{isPasswordValid() && (
|
||||||
|
<div className="flex items-center text-green-600">
|
||||||
|
<svg className="w-4 h-4 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
<span className="text-xs font-medium">Válida</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-2">
|
||||||
|
{[
|
||||||
|
{ key: 'length', label: 'Mínimo 8 caracteres' },
|
||||||
|
{ key: 'uppercase', label: 'Una letra mayúscula' },
|
||||||
|
{ key: 'lowercase', label: 'Una letra minúscula' },
|
||||||
|
{ key: 'number', label: 'Un número' },
|
||||||
|
{ key: 'special', label: 'Un carácter especial (!@#$%^&*)', span: true },
|
||||||
|
].map(({ key, label, span }) => (
|
||||||
|
<div key={key} className={`flex items-center text-xs ${passwordValidation[key] ? 'text-green-600' : 'text-red-500'} ${span ? 'sm:col-span-2' : ''}`}>
|
||||||
|
<svg className="w-3 h-3 mr-1.5 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={passwordValidation[key] ? 'M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z' : 'M6 18L18 6M6 6l12 12'} />
|
||||||
|
</svg>
|
||||||
|
{label}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Confirmar contraseña */}
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">
|
||||||
|
Confirmar Contraseña {!isEditing && <span className="text-red-600">*</span>}
|
||||||
|
</label>
|
||||||
|
<div className="relative">
|
||||||
|
<input
|
||||||
|
type={showConfirmPassword ? 'text' : 'password'}
|
||||||
|
name="confirmPassword"
|
||||||
|
value={form.confirmPassword}
|
||||||
|
onChange={handleChange}
|
||||||
|
required={!isEditing}
|
||||||
|
className={`w-full px-3 py-2 pr-10 border rounded-md shadow-sm focus:ring-2 transition-all duration-200 bg-white text-slate-900 placeholder-slate-400 text-sm ${
|
||||||
|
showPasswordMatchValidation && passwordsMatch && form.confirmPassword.length > 0
|
||||||
|
? 'border-green-300 focus:ring-green-500 focus:border-green-500'
|
||||||
|
: showPasswordMatchValidation && !passwordsMatch
|
||||||
|
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
|
||||||
|
: 'border-slate-300 focus:ring-red-500 focus:border-red-500'
|
||||||
|
}`}
|
||||||
|
placeholder="Confirme la contraseña"
|
||||||
|
/>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => setShowConfirmPassword(v => !v)}
|
||||||
|
className="absolute inset-y-0 right-0 flex items-center pr-3 text-slate-400 hover:text-slate-600"
|
||||||
|
>
|
||||||
|
{showConfirmPassword ? (
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.878 9.878L8.464 8.464m1.414 1.414L21.536 21.536" />
|
||||||
|
</svg>
|
||||||
|
) : (
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{showPasswordMatchValidation && (
|
||||||
|
<div className={`mt-2 flex items-center text-xs ${passwordsMatch ? 'text-green-600' : 'text-red-500'}`}>
|
||||||
|
<svg className="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={passwordsMatch ? 'M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z' : 'M6 18L18 6M6 6l12 12'} />
|
||||||
|
</svg>
|
||||||
|
<span className="font-medium">
|
||||||
|
{passwordsMatch ? 'Las contraseñas coinciden' : 'Las contraseñas no coinciden'}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Botones */}
|
||||||
|
<div className="flex flex-col sm:flex-row justify-end gap-3 pb-8 fade-in-up-users" style={{ animationDelay: '0.25s' }}>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => navigate('/users')}
|
||||||
|
disabled={submitting}
|
||||||
|
className="w-full sm:w-auto px-6 py-2.5 border border-slate-300 rounded-lg shadow-sm text-sm font-semibold text-slate-700 bg-white hover:bg-slate-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-slate-500 transition-all duration-200 disabled:opacity-50"
|
||||||
|
>
|
||||||
|
Cancelar
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={submitting || (showPasswordValidation && !isFormValid())}
|
||||||
|
className="w-full sm:w-auto px-6 py-2.5 border border-transparent rounded-lg shadow-lg text-sm font-semibold text-white bg-gradient-to-r from-blue-700 to-blue-900 hover:from-blue-800 hover:to-blue-950 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-200 flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"
|
||||||
|
>
|
||||||
|
{submitting && <div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white" />}
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={isEditing ? 'M5 13l4 4L19 7' : 'M12 6v6m0 0v6m0-6h6m-6 0H6'} />
|
||||||
|
</svg>
|
||||||
|
<span>
|
||||||
|
{submitting
|
||||||
|
? (isEditing ? 'Actualizando...' : 'Creando...')
|
||||||
|
: (isEditing ? 'Actualizar Usuario' : 'Crear Usuario')}
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import { useNavigate } from 'react-router-dom';
|
||||||
import { fetchUsers, createUser, updateUser, deleteUser, getCurrentUser } from '../api/users.ts';
|
import { fetchUsers, createUser, updateUser, deleteUser, getCurrentUser } from '../api/users.ts';
|
||||||
import { useNotification } from '../context/NotificationContext';
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
|
||||||
@@ -47,6 +48,7 @@ export default function Users() {
|
|||||||
const [currentPage, setCurrentPage] = useState(1);
|
const [currentPage, setCurrentPage] = useState(1);
|
||||||
const [itemsPerPage, setItemsPerPage] = useState(10);
|
const [itemsPerPage, setItemsPerPage] = useState(10);
|
||||||
const { showMessage } = useNotification();
|
const { showMessage } = useNotification();
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
// Estados para validación de contraseña
|
// Estados para validación de contraseña
|
||||||
const [passwordValidation, setPasswordValidation] = useState({
|
const [passwordValidation, setPasswordValidation] = useState({
|
||||||
@@ -70,8 +72,8 @@ export default function Users() {
|
|||||||
setLoading(false);
|
setLoading(false);
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
console.error('Error loading users:', err);
|
setError(err.message);
|
||||||
setError('Error al cargar usuarios');
|
showMessage(err.message, 'error');
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -97,7 +99,6 @@ export default function Users() {
|
|||||||
// Siempre sincroniza la información del usuario autenticado en localStorage
|
// Siempre sincroniza la información del usuario autenticado en localStorage
|
||||||
getCurrentUser()
|
getCurrentUser()
|
||||||
.then(data => {
|
.then(data => {
|
||||||
console.log('Respuesta de /api/users/me/:', data);
|
|
||||||
if (data && data.username) {
|
if (data && data.username) {
|
||||||
localStorage.setItem('username', data.username);
|
localStorage.setItem('username', data.username);
|
||||||
if (data.email) localStorage.setItem('user_email', data.email);
|
if (data.email) localStorage.setItem('user_email', data.email);
|
||||||
@@ -106,14 +107,10 @@ export default function Users() {
|
|||||||
if (data.first_name) localStorage.setItem('user_first_name', data.first_name);
|
if (data.first_name) localStorage.setItem('user_first_name', data.first_name);
|
||||||
if (data.last_name) localStorage.setItem('user_last_name', data.last_name);
|
if (data.last_name) localStorage.setItem('user_last_name', data.last_name);
|
||||||
if (typeof data.is_importador !== 'undefined') localStorage.setItem('user_is_importador', String(data.is_importador));
|
if (typeof data.is_importador !== 'undefined') localStorage.setItem('user_is_importador', String(data.is_importador));
|
||||||
console.log('Guardado en localStorage: username', data.username);
|
|
||||||
} else {
|
|
||||||
console.log('No se encontró username en la respuesta');
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch((err) => { console.log('Error en fetch /api/users/me/', err); });
|
.catch(() => {});
|
||||||
// eslint-disable-next-line
|
}, []);
|
||||||
}, [showMessage]);
|
|
||||||
|
|
||||||
// Debounce para el término de búsqueda
|
// Debounce para el término de búsqueda
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -354,26 +351,6 @@ export default function Users() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error) {
|
|
||||||
return (
|
|
||||||
<div className="bg-red-50 border border-red-200 rounded-md p-4">
|
|
||||||
<div className="flex">
|
|
||||||
<div className="flex-shrink-0">
|
|
||||||
<svg className="h-5 w-5 text-red-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L4.082 16.5c-.77.833.192 2.5 1.732 2.5z" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<div className="ml-3">
|
|
||||||
<h3 className="text-sm font-medium text-red-800">Error al cargar usuarios</h3>
|
|
||||||
<div className="mt-2 text-sm text-red-700">
|
|
||||||
<p>{error}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Cuenta de usuarios verificados y activos
|
// Cuenta de usuarios verificados y activos
|
||||||
const verifiedCount = users.filter(u => u.is_verified === true).length;
|
const verifiedCount = users.filter(u => u.is_verified === true).length;
|
||||||
const activeCount = users.filter(u => u.is_active === true).length;
|
const activeCount = users.filter(u => u.is_active === true).length;
|
||||||
@@ -552,44 +529,17 @@ export default function Users() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col sm:flex-row gap-2 sm:gap-3">
|
<div className="flex flex-col sm:flex-row gap-2 sm:gap-3">
|
||||||
<button
|
<button
|
||||||
onClick={() => { setShowCreateModal(true); setCreateType('agente'); }}
|
onClick={() => navigate('/users/new')}
|
||||||
type="button"
|
type="button"
|
||||||
className="inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-gradient-to-r from-blue-600 to-blue-700 hover:from-blue-700 hover:to-blue-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-200 transform hover:scale-105"
|
className="inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-gradient-to-r from-blue-600 to-blue-700 hover:from-blue-700 hover:to-blue-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-200 transform hover:scale-105"
|
||||||
>
|
>
|
||||||
<svg className="-ml-1 mr-2 h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="-ml-1 mr-2 h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
|
||||||
</svg>
|
</svg>
|
||||||
<span className="hidden sm:inline">Nuevo Agente</span>
|
<span className="hidden sm:inline">Nuevo Usuario</span>
|
||||||
<span className="sm:hidden">Agente</span>
|
<span className="sm:hidden">Usuario</span>
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onClick={async () => {
|
|
||||||
setCreateType('importador');
|
|
||||||
// Fetch importadores RFC
|
|
||||||
try {
|
|
||||||
const res = await fetch(`${import.meta.env.VITE_EFC_API_URL}/customs/importadores/`, { method: 'GET', headers: { 'Authorization': `Bearer ${localStorage.getItem('access')}` } });
|
|
||||||
const data = await res.json();
|
|
||||||
if (Array.isArray(data)) {
|
|
||||||
setImportadores(data);
|
|
||||||
} else {
|
|
||||||
setImportadores([]);
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
setImportadores([]);
|
|
||||||
}
|
|
||||||
setShowCreateModal(true);
|
|
||||||
}}
|
|
||||||
type="button"
|
|
||||||
className="inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-gradient-to-r from-green-600 to-green-700 hover:from-green-700 hover:to-green-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500 transition-all duration-200 transform hover:scale-105"
|
|
||||||
>
|
|
||||||
<svg className="-ml-1 mr-2 h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
|
|
||||||
</svg>
|
|
||||||
<span className="hidden sm:inline">Nuevo Importador</span>
|
|
||||||
<span className="sm:hidden">Importador</span>
|
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{/* Modal para crear usuario (agente o importador) eliminado */}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Filtros avanzados */}
|
{/* Filtros avanzados */}
|
||||||
@@ -777,6 +727,16 @@ export default function Users() {
|
|||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap text-center">
|
<td className="px-6 py-4 whitespace-nowrap text-center">
|
||||||
<div className="flex justify-center space-x-2">
|
<div className="flex justify-center space-x-2">
|
||||||
|
<button
|
||||||
|
onClick={() => navigate(`/users/${user.id}/edit`)}
|
||||||
|
className="inline-flex items-center px-3 py-1.5 border border-blue-300 shadow-sm text-xs font-medium rounded-lg text-blue-700 bg-white hover:bg-blue-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-200 transform hover:scale-105"
|
||||||
|
title="Editar usuario"
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
|
||||||
|
</svg>
|
||||||
|
Editar
|
||||||
|
</button>
|
||||||
<button
|
<button
|
||||||
onClick={() => { setShowDeleteModal(true); setUserToDelete(user); }}
|
onClick={() => { setShowDeleteModal(true); setUserToDelete(user); }}
|
||||||
disabled={user.username === localStorage.getItem('username')}
|
disabled={user.username === localStorage.getItem('username')}
|
||||||
@@ -874,16 +834,27 @@ export default function Users() {
|
|||||||
<div className="text-xs text-gray-500 mt-1">ID: {user.id}</div>
|
<div className="text-xs text-gray-500 mt-1">ID: {user.id}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<div className="flex items-center gap-2">
|
||||||
onClick={() => { setShowDeleteModal(true); setUserToDelete(user); }}
|
<button
|
||||||
disabled={user.username === localStorage.getItem('username')}
|
onClick={() => navigate(`/users/${user.id}/edit`)}
|
||||||
className={`inline-flex items-center px-3 py-2 border border-red-300 shadow-sm text-xs font-medium rounded-lg text-red-700 bg-white hover:bg-red-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 transition-all duration-200 ${user.username === localStorage.getItem('username') ? 'opacity-50 cursor-not-allowed' : ''}`}
|
className="inline-flex items-center px-3 py-2 border border-blue-300 shadow-sm text-xs font-medium rounded-lg text-blue-700 bg-white hover:bg-blue-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-200"
|
||||||
title={user.username === localStorage.getItem('username') ? 'No puedes eliminar tu propia cuenta' : 'Eliminar usuario'}
|
title="Editar usuario"
|
||||||
>
|
>
|
||||||
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setShowDeleteModal(true); setUserToDelete(user); }}
|
||||||
|
disabled={user.username === localStorage.getItem('username')}
|
||||||
|
className={`inline-flex items-center px-3 py-2 border border-red-300 shadow-sm text-xs font-medium rounded-lg text-red-700 bg-white hover:bg-red-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 transition-all duration-200 ${user.username === localStorage.getItem('username') ? 'opacity-50 cursor-not-allowed' : ''}`}
|
||||||
|
title={user.username === localStorage.getItem('username') ? 'No puedes eliminar tu propia cuenta' : 'Eliminar usuario'}
|
||||||
|
>
|
||||||
|
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="grid grid-cols-2 gap-4 text-xs">
|
<div className="grid grid-cols-2 gap-4 text-xs">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
||||||
const [importadoresDisponibles, setImportadoresDisponibles] = React.useState([]);
|
const [importadoresDisponibles, setImportadoresDisponibles] = React.useState([]);
|
||||||
const [importadoresSeleccionados, setImportadoresSeleccionados] = React.useState([]);
|
const [importadoresSeleccionados, setImportadoresSeleccionados] = React.useState([]);
|
||||||
|
const { showMessage } = useNotification();
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (!open || !vucem) return;
|
if (!open || !vucem) return;
|
||||||
@@ -50,7 +51,10 @@ function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
|||||||
body: JSON.stringify(body)
|
body: JSON.stringify(body)
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
if (!res.ok) throw new Error('Error al relacionar importador');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
// Guardar el id de la relación en el importador seleccionado
|
// Guardar el id de la relación en el importador seleccionado
|
||||||
const impConRelacion = {
|
const impConRelacion = {
|
||||||
@@ -61,7 +65,7 @@ function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
|||||||
setImportadoresDisponibles(importadoresDisponibles.filter(i => i.rfc !== imp.rfc));
|
setImportadoresDisponibles(importadoresDisponibles.filter(i => i.rfc !== imp.rfc));
|
||||||
setImportadoresSeleccionados([...importadoresSeleccionados, impConRelacion]);
|
setImportadoresSeleccionados([...importadoresSeleccionados, impConRelacion]);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('No se pudo relacionar el importador.');
|
showMessage(err.message || 'No se pudo relacionar el importador', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
// Mover importador de seleccionados a disponibles
|
// Mover importador de seleccionados a disponibles
|
||||||
@@ -71,16 +75,19 @@ function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
|||||||
// Buscar el id de la relación usuario-importador en el objeto importador
|
// Buscar el id de la relación usuario-importador en el objeto importador
|
||||||
const relacionId = imp.usuario_importador_id || imp.id_relacion || imp.id;
|
const relacionId = imp.usuario_importador_id || imp.id_relacion || imp.id;
|
||||||
if (!relacionId) {
|
if (!relacionId) {
|
||||||
alert('No se encontró el id de la relación usuario-importador.');
|
showMessage('No se encontró el ID de la relación usuario-importador', 'warning');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const url = `${import.meta.env.VITE_EFC_API_URL}/vucem/usuario-importador/${relacionId}/`;
|
const url = `${import.meta.env.VITE_EFC_API_URL}/vucem/usuario-importador/${relacionId}/`;
|
||||||
const res = await fetchWithAuth(url, { method: 'DELETE' });
|
const res = await fetchWithAuth(url, { method: 'DELETE' });
|
||||||
if (!res.ok) throw new Error('Error al eliminar relación');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
setImportadoresSeleccionados(importadoresSeleccionados.filter(i => i.rfc !== imp.rfc));
|
setImportadoresSeleccionados(importadoresSeleccionados.filter(i => i.rfc !== imp.rfc));
|
||||||
setImportadoresDisponibles([...importadoresDisponibles, imp]);
|
setImportadoresDisponibles([...importadoresDisponibles, imp]);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('No se pudo eliminar la relación del importador.');
|
showMessage(err.message || 'No se pudo eliminar la relación del importador', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -202,10 +209,14 @@ function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
|||||||
}
|
}
|
||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth, putFormDataWithAuth, postFormDataWithAuth, patchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth, putFormDataWithAuth, postFormDataWithAuth, patchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { useUser } from '../context/UserContext';
|
||||||
|
import { useNotification } from '../context/NotificationContext';
|
||||||
|
import { extractApiError } from '../api/apiError';
|
||||||
|
|
||||||
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
export default function Vucem() {
|
export default function Vucem() {
|
||||||
// Estado para modal de relacionar importadores
|
const { showMessage } = useNotification();
|
||||||
|
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
||||||
const [showRelacionarModal, setShowRelacionarModal] = useState(false);
|
const [showRelacionarModal, setShowRelacionarModal] = useState(false);
|
||||||
const [selectedVucem, setSelectedVucem] = useState(null);
|
const [selectedVucem, setSelectedVucem] = useState(null);
|
||||||
const [vucemList, setVucemList] = useState([]);
|
const [vucemList, setVucemList] = useState([]);
|
||||||
@@ -216,10 +227,13 @@ export default function Vucem() {
|
|||||||
const [editVucem, setEditVucem] = useState(null);
|
const [editVucem, setEditVucem] = useState(null);
|
||||||
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
||||||
const [deleteVucem, setDeleteVucem] = useState(null);
|
const [deleteVucem, setDeleteVucem] = useState(null);
|
||||||
|
const [organizaciones, setOrganizaciones] = useState([]);
|
||||||
|
const { user: currentUser } = useUser();
|
||||||
|
|
||||||
// Estado para formulario de creación/edición
|
// Estado para formulario de creación/edición
|
||||||
const initialForm = {
|
const initialForm = {
|
||||||
usuario: '',
|
usuario: '',
|
||||||
|
organizacion: '',
|
||||||
password: '',
|
password: '',
|
||||||
patente: '',
|
patente: '',
|
||||||
efirma: '',
|
efirma: '',
|
||||||
@@ -260,6 +274,22 @@ export default function Vucem() {
|
|||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchOrganizaciones = async () => {
|
||||||
|
try {
|
||||||
|
const url = `${import.meta.env.VITE_EFC_API_URL}/organization/organizaciones/`;
|
||||||
|
const res = await fetchWithAuth(url); // ← USA fetchWithAuth
|
||||||
|
if (!res.ok) throw new Error('Error al obtener las organizaciones');
|
||||||
|
const data = await res.json();
|
||||||
|
setOrganizaciones(data);
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error fetching organizaciones:', err);
|
||||||
|
setOrganizaciones([]); // ← Asegurar que siempre sea un array
|
||||||
|
}
|
||||||
|
};
|
||||||
|
fetchOrganizaciones();
|
||||||
|
}, []);
|
||||||
|
|
||||||
// Funciones para alternar visibilidad en modal de edición
|
// Funciones para alternar visibilidad en modal de edición
|
||||||
const toggleEditPasswordVisibility = () => {
|
const toggleEditPasswordVisibility = () => {
|
||||||
setShowEditPassword(!showEditPassword);
|
setShowEditPassword(!showEditPassword);
|
||||||
@@ -356,12 +386,15 @@ export default function Vucem() {
|
|||||||
setLoading(true);
|
setLoading(true);
|
||||||
try {
|
try {
|
||||||
const res = await fetchWithAuth(`${API_URL}/vucem/vucem/`);
|
const res = await fetchWithAuth(`${API_URL}/vucem/vucem/`);
|
||||||
if (!res.ok) throw new Error('Error al cargar Ventanilla Unica');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
setVucemList(data);
|
setVucemList(data);
|
||||||
setError(null);
|
setError(null);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
setError('Error al cargar Ventanilla Unica');
|
setError(err.message);
|
||||||
}
|
}
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
};
|
};
|
||||||
@@ -441,14 +474,15 @@ export default function Vucem() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Error('Error al cambiar el estado');
|
const errMsg = await extractApiError(response);
|
||||||
|
throw new Error(errMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Recargar la lista para reflejar los cambios
|
// Recargar la lista para reflejar los cambios
|
||||||
await fetchVucem();
|
await fetchVucem();
|
||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('Error al cambiar el estado de la credencial');
|
showMessage(err.message || 'Error al cambiar el estado de la credencial', 'error');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1272,19 +1306,23 @@ export default function Vucem() {
|
|||||||
formData.append('password', form.password);
|
formData.append('password', form.password);
|
||||||
formData.append('patente', form.patente);
|
formData.append('patente', form.patente);
|
||||||
formData.append('efirma', form.efirma);
|
formData.append('efirma', form.efirma);
|
||||||
if (form.key) formData.append('key', form.key);
|
|
||||||
if (form.cer) formData.append('cer', form.cer);
|
|
||||||
formData.append('is_importador', form.is_importador);
|
formData.append('is_importador', form.is_importador);
|
||||||
|
formData.append('is_active', form.is_active);
|
||||||
formData.append('acusecove', form.acusecove);
|
formData.append('acusecove', form.acusecove);
|
||||||
formData.append('acuseedocument', form.acuseedocument);
|
formData.append('acuseedocument', form.acuseedocument);
|
||||||
formData.append('is_active', form.is_active);
|
formData.append('organizacion_id', form.organizacion);
|
||||||
|
if (form.key) formData.append('key', form.key);
|
||||||
|
if (form.cer) formData.append('cer', form.cer);
|
||||||
try {
|
try {
|
||||||
const res = await postFormDataWithAuth(`${API_URL}/vucem/vucem/`, formData);
|
const res = await postFormDataWithAuth(`${API_URL}/vucem/vucem/`, formData);
|
||||||
if (!res.ok) throw new Error('Error al crear');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
await fetchVucem();
|
await fetchVucem();
|
||||||
closeModals();
|
closeModals();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('Error al crear');
|
showMessage(err.message || 'Error al crear la credencial', 'error');
|
||||||
}
|
}
|
||||||
}}>
|
}}>
|
||||||
|
|
||||||
@@ -1553,6 +1591,54 @@ export default function Vucem() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Seccion de organizacion para super_users */}
|
||||||
|
{currentUser.is_superuser ? (
|
||||||
|
<div className="bg-slate-50 rounded-lg p-4 border border-slate-200">
|
||||||
|
<div className="flex items-center mb-3 pb-2 border-b border-slate-300">
|
||||||
|
<div className="bg-amber-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||||
|
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="text-sm font-semibold text-slate-800">Configuracion de Organizaciones</h4>
|
||||||
|
<p className="text-xs text-slate-600">Asignar la Organizacion a la que pertenece.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 lg:grid-cols-1 gap-4">
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="block text-xs font-semibold text-slate-700">
|
||||||
|
Seleccionar Organizacion <span className="text-red-600">*</span>
|
||||||
|
</label>
|
||||||
|
<div className="relative rounded-lg shadow-sm">
|
||||||
|
<select
|
||||||
|
name="organizacion"
|
||||||
|
value={form.organizacion || ''}
|
||||||
|
onChange={handleInputChange}
|
||||||
|
className="block w-full rounded-lg border-gray-300 pl-3 pr-10 py-2.5 text-gray-900 placeholder-gray-500
|
||||||
|
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||||
|
transition-all duration-200 bg-white appearance-none"
|
||||||
|
>
|
||||||
|
<option value="">Todas las organizaciones</option>
|
||||||
|
{organizaciones.results && organizaciones.results.map(org => (
|
||||||
|
<option key={org.id} value={org.id}>
|
||||||
|
{org.nombre}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
|
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||||
|
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="bg-slate-50 rounded-lg p-4 border border-slate-200"></div>
|
||||||
|
)}
|
||||||
{/* Botones de acción */}
|
{/* Botones de acción */}
|
||||||
<div className="flex flex-col sm:flex-row justify-end space-y-2 sm:space-y-0 sm:space-x-3 pt-4 border-t border-slate-200">
|
<div className="flex flex-col sm:flex-row justify-end space-y-2 sm:space-y-0 sm:space-x-3 pt-4 border-t border-slate-200">
|
||||||
<button
|
<button
|
||||||
@@ -1625,11 +1711,14 @@ export default function Vucem() {
|
|||||||
formData.append('is_active', form.is_active);
|
formData.append('is_active', form.is_active);
|
||||||
try {
|
try {
|
||||||
const res = await putFormDataWithAuth(`${API_URL}/vucem/vucem/${editVucem.id}/`, formData);
|
const res = await putFormDataWithAuth(`${API_URL}/vucem/vucem/${editVucem.id}/`, formData);
|
||||||
if (!res.ok) throw new Error('Error al actualizar');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
await fetchVucem();
|
await fetchVucem();
|
||||||
closeModals();
|
closeModals();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('Error al actualizar');
|
showMessage(err.message || 'Error al actualizar la credencial', 'error');
|
||||||
}
|
}
|
||||||
}}>
|
}}>
|
||||||
|
|
||||||
@@ -1946,11 +2035,14 @@ export default function Vucem() {
|
|||||||
if (!deleteVucem) return;
|
if (!deleteVucem) return;
|
||||||
try {
|
try {
|
||||||
const res = await deleteWithAuth(`${API_URL}/vucem/vucem/${deleteVucem.id}/`);
|
const res = await deleteWithAuth(`${API_URL}/vucem/vucem/${deleteVucem.id}/`);
|
||||||
if (!res.ok) throw new Error('Error al eliminar');
|
if (!res.ok) {
|
||||||
|
const errMsg = await extractApiError(res);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
await fetchVucem();
|
await fetchVucem();
|
||||||
closeModals();
|
closeModals();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
alert('Error al eliminar');
|
showMessage(err.message || 'Error al eliminar la credencial', 'error');
|
||||||
}
|
}
|
||||||
}} className="px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 transition-colors disabled:opacity-50 flex items-center">Eliminar</button>
|
}} className="px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 transition-colors disabled:opacity-50 flex items-center">Eliminar</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { fetchWithAuth } from '../fetchWithAuth';
|
import { fetchWithAuth } from '../fetchWithAuth';
|
||||||
|
import { extractApiError } from '../api/apiError';
|
||||||
|
|
||||||
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
||||||
|
|
||||||
@@ -13,7 +14,8 @@ export const downloadFile = async (id, filename = 'archivo', showMessage) => {
|
|||||||
const res = await fetchWithAuth(`${API_URL}/record/documents/descargar/${id}/`);
|
const res = await fetchWithAuth(`${API_URL}/record/documents/descargar/${id}/`);
|
||||||
|
|
||||||
if (!res.ok) {
|
if (!res.ok) {
|
||||||
showMessage('Error en la descarga del archivo', 'error');
|
const errMsg = await extractApiError(res);
|
||||||
|
showMessage(errMsg, 'error');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -50,8 +52,11 @@ export const downloadBulkZip = async (ids, showMessage, pedimentoName) => {
|
|||||||
body: JSON.stringify({ document_ids: ids })
|
body: JSON.stringify({ document_ids: ids })
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!response.ok) throw new Error('Error en la descarga');
|
if (!response.ok) {
|
||||||
|
const errMsg = await extractApiError(response);
|
||||||
|
throw new Error(errMsg);
|
||||||
|
}
|
||||||
|
|
||||||
const blob = await response.blob();
|
const blob = await response.blob();
|
||||||
const url = window.URL.createObjectURL(blob);
|
const url = window.URL.createObjectURL(blob);
|
||||||
const a = document.createElement('a');
|
const a = document.createElement('a');
|
||||||
|
|||||||
Reference in New Issue
Block a user