Merge pull request 'repoCumplimiento' (#6) from repoCumplimiento into main
Reviewed-on: #6
This commit is contained in:
@@ -2196,22 +2196,7 @@ export default function PedimentoDetail() {
|
||||
</div>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleTabChange('procesos')}
|
||||
className={`whitespace-nowrap py-3 sm:py-4 px-2 sm:px-3 lg:px-1 border-b-2 font-medium text-xs sm:text-sm transition-all duration-200 ${
|
||||
activeTab === 'procesos'
|
||||
? 'border-blue-600 text-blue-600 bg-blue-50/50'
|
||||
: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center space-x-1 sm:space-x-2">
|
||||
<svg className="w-4 h-4 sm:w-5 sm: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 2v10a2 2 0 002 2h8a2 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-6 9l2 2 4-4" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Procesos</span>
|
||||
<span className="sm:hidden">Proc.</span>
|
||||
</div>
|
||||
</button>
|
||||
|
||||
|
||||
<button
|
||||
onClick={() => handleTabChange('auditor')}
|
||||
@@ -3789,407 +3774,7 @@ export default function PedimentoDetail() {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{activeTab === 'procesos' && (
|
||||
<div className="p-6">
|
||||
{/* Header de la sección */}
|
||||
<div className="mb-4 sm:mb-6">
|
||||
<div className="flex flex-col lg:flex-row lg:items-center lg:justify-between gap-4">
|
||||
<div className="flex flex-col sm:flex-row sm:items-center gap-2 sm:gap-4">
|
||||
<h3 className="text-lg sm:text-xl font-semibold text-gray-900">
|
||||
Procesos del Pedimento
|
||||
</h3>
|
||||
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-purple-100 text-purple-800 w-fit">
|
||||
{procesosCount} Procesos
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{/* Botones de creación de servicios */}
|
||||
<div className="flex flex-col sm:flex-row items-start sm:items-center gap-2 sm:gap-3">
|
||||
{/* Botón prioritario: Obtener pedimento completo */}
|
||||
{!existeServicio(3) && (
|
||||
<button
|
||||
onClick={() => handleCrearServicio(3, 'Procesamiento SAT')}
|
||||
disabled={creatingService === 3}
|
||||
className={`inline-flex items-center px-3 sm:px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white transition-colors duration-200 w-full sm:w-auto justify-center ${
|
||||
creatingService === 3
|
||||
? 'bg-gray-400 cursor-not-allowed'
|
||||
: 'bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500'
|
||||
}`}
|
||||
>
|
||||
{creatingService === 3 ? (
|
||||
<>
|
||||
<svg className="animate-spin -ml-1 mr-2 h-4 w-4 text-white" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Creando...</span>
|
||||
<span className="sm:hidden">Creando...</span>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<svg className="-ml-1 mr-2 h-4 w-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>
|
||||
<span className="hidden sm:inline">Obtener Pedimento Completo</span>
|
||||
<span className="sm:hidden">Obtener Pedimento</span>
|
||||
</>
|
||||
)}
|
||||
</button>
|
||||
)}
|
||||
|
||||
{/* Otros servicios disponibles */}
|
||||
{existeServicio(3) && (
|
||||
<div className="flex items-center space-x-2">
|
||||
{/* Generación COVEs */}
|
||||
{!existeServicio(4) && (
|
||||
<button
|
||||
onClick={() => handleCrearServicio(4, 'Generación COVEs')}
|
||||
disabled={creatingService === 4}
|
||||
className={`inline-flex items-center px-3 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 transition-colors duration-200 ${
|
||||
creatingService === 4 ? 'opacity-50 cursor-not-allowed' : ''
|
||||
}`}
|
||||
>
|
||||
{creatingService === 4 ? (
|
||||
<svg className="animate-spin -ml-1 mr-2 h-4 w-4" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
) : (
|
||||
<svg className="-ml-1 mr-2 h-4 w-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>
|
||||
)}
|
||||
COVEs
|
||||
</button>
|
||||
)}
|
||||
|
||||
{/* Generación EDocs */}
|
||||
{!existeServicio(5) && (
|
||||
<button
|
||||
onClick={() => handleCrearServicio(5, 'Generación EDocs')}
|
||||
disabled={creatingService === 5}
|
||||
className={`inline-flex items-center px-3 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 transition-colors duration-200 ${
|
||||
creatingService === 5 ? 'opacity-50 cursor-not-allowed' : ''
|
||||
}`}
|
||||
>
|
||||
{creatingService === 5 ? (
|
||||
<svg className="animate-spin -ml-1 mr-2 h-4 w-4" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
) : (
|
||||
<svg className="-ml-1 mr-2 h-4 w-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>
|
||||
)}
|
||||
EDocs
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{procesosLoading ? (
|
||||
<div className="flex justify-center items-center py-12">
|
||||
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-purple-600"></div>
|
||||
<span className="ml-2 text-gray-600">Cargando procesos...</span>
|
||||
</div>
|
||||
) : procesosError ? (
|
||||
<div className="text-center py-12">
|
||||
<div className="text-red-600 mb-2">
|
||||
<svg className="mx-auto h-12 w-12" 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.664-.833-2.464 0L4.35 16.5c-.77.833.192 2.5 1.732 2.5z" />
|
||||
</svg>
|
||||
</div>
|
||||
<h3 className="text-lg font-medium text-gray-900 mb-1">Error al cargar procesos</h3>
|
||||
<p className="text-gray-600">{procesosError}</p>
|
||||
</div>
|
||||
) : procesos.length === 0 ? (
|
||||
<div className="text-center py-12">
|
||||
<svg className="mx-auto h-12 w-12 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 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-6 9l2 2 4-4" />
|
||||
</svg>
|
||||
<h3 className="mt-2 text-sm font-medium text-gray-900">No hay procesos</h3>
|
||||
<p className="mt-1 text-sm text-gray-500">
|
||||
No se encontraron procesos para este pedimento.
|
||||
</p>
|
||||
</div>
|
||||
) : (
|
||||
<div className="space-y-4">
|
||||
{/* Tabla de Procesos */}
|
||||
<div className="flex flex-col gap-2 mb-2 sm:flex-row sm:justify-end">
|
||||
<button
|
||||
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors"
|
||||
onClick={async () => {
|
||||
if (!edocs || edocs.length === 0) {
|
||||
showMessage('No hay EDocs para procesar', 'info');
|
||||
return;
|
||||
}
|
||||
const pendientes = edocs.filter(e => !e.edocument_descargado);
|
||||
if (pendientes.length === 0) {
|
||||
showMessage('No hay EDocs pendientes por descargar', 'info');
|
||||
return;
|
||||
}
|
||||
let successCount = 0;
|
||||
let errorCount = 0;
|
||||
for (const edoc of pendientes) {
|
||||
try {
|
||||
await handleEdocProcess(edoc);
|
||||
successCount++;
|
||||
} catch (error) {
|
||||
errorCount++;
|
||||
}
|
||||
}
|
||||
if (successCount > 0) showMessage(`${successCount} EDoc(s) procesados exitosamente`, 'success');
|
||||
if (errorCount > 0) showMessage(`${errorCount} EDoc(s) no se pudieron procesar`, 'error');
|
||||
}}
|
||||
>
|
||||
Descargar todos los EDocs
|
||||
</button>
|
||||
<button
|
||||
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-green-600 hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500 transition-colors"
|
||||
onClick={async () => {
|
||||
if (!edocs || edocs.length === 0) {
|
||||
showMessage('No hay Acuses de EDocs para procesar', 'info');
|
||||
return;
|
||||
}
|
||||
const pendientes = edocs.filter(e => !e.acuse_descargado);
|
||||
if (pendientes.length === 0) {
|
||||
showMessage('No hay Acuses de EDocs pendientes por descargar', 'info');
|
||||
return;
|
||||
}
|
||||
let successCount = 0;
|
||||
let errorCount = 0;
|
||||
for (const edoc of pendientes) {
|
||||
try {
|
||||
await handleAcuseEdocProcess(edoc);
|
||||
successCount++;
|
||||
} catch (error) {
|
||||
errorCount++;
|
||||
}
|
||||
}
|
||||
if (successCount > 0) showMessage(`${successCount} Acuse(s) de EDoc procesados exitosamente`, 'success');
|
||||
if (errorCount > 0) showMessage(`${errorCount} Acuse(s) de EDoc no se pudieron procesar`, 'error');
|
||||
}}
|
||||
>
|
||||
Descargar todos los Acuses de EDocs
|
||||
</button>
|
||||
</div>
|
||||
<div className="overflow-hidden shadow ring-1 ring-black ring-opacity-5 rounded-lg">
|
||||
<div className="overflow-x-auto">
|
||||
<table className="min-w-full divide-y divide-gray-300">
|
||||
<thead className="bg-gray-50">
|
||||
<tr>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
ID Proceso
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
Servicio
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
Estado
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
Organización
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
Fecha Creación
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
Última Actualización
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
Acciones
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody className="bg-white divide-y divide-gray-200">
|
||||
{procesos.map((proceso, index) => (
|
||||
<tr key={`${proceso.task_id}-${index}`} className={`hover:bg-gray-50 ${selectedProcesos.includes(proceso.task_id) ? 'bg-blue-50' : ''}`}>
|
||||
<td className="px-3 py-4">
|
||||
<div className="flex items-center justify-center">
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={selectedProcesos.includes(proceso.task_id)}
|
||||
onChange={(e) => handleSelectProceso(proceso.task_id, e.target.checked)}
|
||||
disabled={proceso.status === 'running' || proceso.status === 'completed'}
|
||||
className="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded disabled:opacity-50"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<div className="flex items-center">
|
||||
<div className="flex-shrink-0 h-10 w-10">
|
||||
<div className="h-10 w-10 rounded-lg bg-purple-100 flex items-center justify-center">
|
||||
<svg className="h-6 w-6 text-purple-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 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-6 9l2 2 4-4" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<div className="ml-4">
|
||||
<div className="text-sm font-medium text-gray-900">
|
||||
#{proceso.task_id}
|
||||
</div>
|
||||
<div className="text-sm text-gray-500">
|
||||
{proceso.pedimento_app}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<span className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium ${getServicioColor(proceso.servicio)}`}>
|
||||
{getServicioLabel(proceso.servicio)}
|
||||
</span>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<span className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium ${getTaskStatusColor(proceso.status)}`}>
|
||||
{getTaskStatusLabel(proceso.status)}
|
||||
</span>
|
||||
{proceso.status === 'running' && (
|
||||
<span className="ml-2 inline-flex items-center">
|
||||
<svg className="animate-spin h-4 w-4 text-blue-600" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
</span>
|
||||
)}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
||||
{proceso.organizacion_name || 'N/A'}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
{formatDate(proceso.created_at)}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
{formatDate(proceso.updated_at)}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm font-medium">
|
||||
<div className="flex items-center space-x-2">
|
||||
{/* Botón Play (Ejecutar Servicio) */}
|
||||
{isTaskActionable(proceso.status) && (
|
||||
<button
|
||||
onClick={() => handleEjecutarProceso(proceso)}
|
||||
disabled={executingId === proceso.task_id || proceso.status === 'running'}
|
||||
className={`group inline-flex items-center justify-center w-8 h-8 rounded-lg transition-all duration-200 ${
|
||||
executingId === proceso.task_id || proceso.status === 'running'
|
||||
? 'bg-gray-100 text-gray-400 cursor-not-allowed'
|
||||
: 'text-green-700 bg-green-100 hover:bg-green-200 hover:text-green-800'
|
||||
}`}
|
||||
title={
|
||||
executingId === proceso.task_id ? 'Ejecutando...' :
|
||||
proceso.status === 'running' ? 'En proceso...' :
|
||||
'Ejecutar servicio'
|
||||
}
|
||||
>
|
||||
{executingId === proceso.task_id ? (
|
||||
<svg className="animate-spin h-4 w-4" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
) : (
|
||||
<svg className="h-4 w-4 transition-transform group-hover:scale-110" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M8 5v14l11-7z"/>
|
||||
</svg>
|
||||
)}
|
||||
</button>
|
||||
)}
|
||||
|
||||
{/* Botón Retry (Reintentar) */}
|
||||
{proceso.status === 'failed' && (
|
||||
<button
|
||||
onClick={() => handlePasarAEspera(proceso)}
|
||||
disabled={changingStateId === proceso.task_id}
|
||||
className={`group inline-flex items-center justify-center w-8 h-8 rounded-lg transition-all duration-200 ${
|
||||
changingStateId === proceso.task_id
|
||||
? 'bg-gray-100 text-gray-400 cursor-not-allowed'
|
||||
: 'text-yellow-700 bg-yellow-100 hover:bg-yellow-200 hover:text-yellow-800'
|
||||
}`}
|
||||
title={changingStateId === proceso.task_id ? 'Reiniciando...' : 'Reintentar proceso'}
|
||||
>
|
||||
{changingStateId === proceso.task_id ? (
|
||||
<svg className="animate-spin h-4 w-4" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
) : (
|
||||
<svg className="h-4 w-4 transition-transform group-hover:scale-110" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" />
|
||||
</svg>
|
||||
)}
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Paginación para Procesos */}
|
||||
{procesosCount > 0 && (
|
||||
<div className="mt-6 flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
|
||||
<div className="flex flex-col sm:flex-row sm:items-center gap-2 sm:gap-4">
|
||||
<span className="text-sm text-gray-700">
|
||||
<span className="hidden sm:inline">Mostrando </span>
|
||||
<span className="font-medium">{((procesosPage - 1) * procesosPageSize) + 1}</span>-
|
||||
<span className="font-medium">{Math.min(procesosPage * procesosPageSize, procesosCount)}</span>
|
||||
<span className="hidden sm:inline"> de </span>
|
||||
<span className="sm:hidden">/</span>
|
||||
<span className="font-medium">{procesosCount}</span>
|
||||
<span className="hidden sm:inline"> procesos</span>
|
||||
</span>
|
||||
<select
|
||||
value={procesosPageSize}
|
||||
onChange={(e) => {
|
||||
setProcesosPageSize(Number(e.target.value));
|
||||
setProcesosPage(1);
|
||||
}}
|
||||
className="text-sm border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500 w-full sm:w-auto"
|
||||
>
|
||||
<option value={10}>10 por página</option>
|
||||
<option value={25}>25 por página</option>
|
||||
<option value={50}>50 por página</option>
|
||||
<option value={100}>100 por página</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center justify-center sm:justify-end space-x-1 sm:space-x-2">
|
||||
<button
|
||||
onClick={() => setProcesosPage(Math.max(1, procesosPage - 1))}
|
||||
disabled={procesosPage === 1}
|
||||
className="relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 disabled:opacity-50 disabled:cursor-not-allowed"
|
||||
>
|
||||
<span className="sr-only">Anterior</span>
|
||||
<svg className="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fillRule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<span className="relative inline-flex items-center px-4 py-2 border border-gray-300 bg-white text-sm font-medium text-gray-700">
|
||||
Página {procesosPage} de {Math.ceil(procesosCount / procesosPageSize)}
|
||||
</span>
|
||||
|
||||
<button
|
||||
onClick={() => setProcesosPage(Math.min(Math.ceil(procesosCount / procesosPageSize), procesosPage + 1))}
|
||||
disabled={procesosPage >= Math.ceil(procesosCount / procesosPageSize)}
|
||||
className="relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 disabled:opacity-50 disabled:cursor-not-allowed"
|
||||
>
|
||||
<span className="sr-only">Siguiente</span>
|
||||
<svg className="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fillRule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{activeTab === 'auditor' && (
|
||||
<div className="p-6">
|
||||
@@ -4200,102 +3785,6 @@ export default function PedimentoDetail() {
|
||||
<h3 className="text-lg sm:text-xl font-semibold text-gray-900">
|
||||
Auditoría del Pedimento
|
||||
</h3>
|
||||
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800 w-fit">
|
||||
Análisis Completo
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
{/* Botones de Auditoría */}
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-2 sm:gap-3 w-full lg:w-auto">
|
||||
<button
|
||||
onClick={() => handleAuditarPedimentoCompleto()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg 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 shadow-md hover:shadow-lg w-full"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" 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>
|
||||
<span className="hidden sm:inline">Auditar Pedimento Completo</span>
|
||||
<span className="sm:hidden">Ped. Completo</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleAuditarEDocs()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg text-white bg-gradient-to-r from-gray-600 to-gray-700 hover:from-gray-700 hover:to-gray-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 transition-all duration-200 shadow-md hover:shadow-lg w-full"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 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>
|
||||
<span className="hidden sm:inline">Auditar EDocs</span>
|
||||
<span className="sm:hidden">EDocs</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleAuditarPartidas()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg text-white bg-gradient-to-r from-gray-600 to-gray-700 hover:from-gray-700 hover:to-gray-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 transition-all duration-200 shadow-md hover:shadow-lg w-full"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 17V7m0 10a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h2a2 2 0 012 2m0 10a2 2 0 002 2h2a2 2 0 002-2M9 7a2 2 0 012-2h2a2 2 0 012 2m0 0V17m0-10a2 2 0 012-2h2a2 2 0 002-2M13 7h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Auditar Partidas</span>
|
||||
<span className="sm:hidden">Partidas</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleAuditarAcuses()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg text-white bg-gradient-to-r from-gray-600 to-gray-700 hover:from-gray-700 hover:to-gray-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 transition-all duration-200 shadow-md hover:shadow-lg w-full"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 13l4 4L19 7" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Auditar Acuses</span>
|
||||
<span className="sm:hidden">Acuses</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleAuditarCoves()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg text-white bg-gradient-to-r from-gray-600 to-gray-700 hover:from-gray-700 hover:to-gray-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 transition-all duration-200 shadow-md hover:shadow-lg w-full"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Auditar COVEs</span>
|
||||
<span className="sm:hidden">COVEs</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleAuditarAcuseCoves()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg text-white bg-gradient-to-r from-gray-600 to-gray-700 hover:from-gray-700 hover:to-gray-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 transition-all duration-200 shadow-md hover:shadow-lg w-full"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" 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="hidden sm:inline">Auditar Acuse COVEs</span>
|
||||
<span className="sm:hidden">Ac. COVEs</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleCompararRemesasCoves()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg text-white bg-gradient-to-r from-red-600 to-red-700 hover:from-red-700 hover:to-red-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 transition-all duration-200 shadow-md hover:shadow-lg w-full sm:col-span-2 lg:col-span-1"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" 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" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Comparar Remesas vs COVEs</span>
|
||||
<span className="sm:hidden">Comparar</span>
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => handleVerificarServiciosCreados()}
|
||||
className="inline-flex items-center justify-center px-3 py-2 border border-transparent text-sm font-medium rounded-lg 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 shadow-md hover:shadow-lg w-full sm:col-span-2 lg:col-span-1"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 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>
|
||||
<span className="hidden sm:inline">Verificar Servicios Creados</span>
|
||||
<span className="sm:hidden">Verificar</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,4 +1,12 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { getCurrentUser } from '../api/users';
|
||||
// Helper to get current user with fetchWithAuth
|
||||
const fetchCurrentUserWithAuth = async () => {
|
||||
const url = `${API_URL}/user/users/me/`;
|
||||
const res = await fetchWithAuth(url);
|
||||
if (!res.ok) throw new Error('No se pudo obtener el usuario actual');
|
||||
return res.json();
|
||||
};
|
||||
import { fetchWithAuth } from '../fetchWithAuth';
|
||||
import { useNotification } from '../context/NotificationContext';
|
||||
import datastageModelsData from '../data/datastageModels.json';
|
||||
@@ -34,7 +42,109 @@ if (typeof document !== 'undefined' && !document.getElementById('reports-animati
|
||||
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() {
|
||||
// Estado para organizacion_id
|
||||
const [organizacionId, setOrganizacionId] = useState('');
|
||||
|
||||
useEffect(() => {
|
||||
async function fetchOrgId() {
|
||||
try {
|
||||
const user = await fetchCurrentUserWithAuth();
|
||||
if (user && user.organizacion) {
|
||||
setOrganizacionId(user.organizacion);
|
||||
}
|
||||
} catch (err) {
|
||||
setOrganizacionId('');
|
||||
}
|
||||
}
|
||||
fetchOrgId();
|
||||
}, []);
|
||||
// Handler for Generar Reporte in Cumplimiento tab
|
||||
const handleGenerarReporteCumplimiento = async () => {
|
||||
if (!organizacionId) {
|
||||
alert('No se pudo obtener el organizacion_id. Intenta de nuevo más tarde.');
|
||||
return;
|
||||
}
|
||||
// Build query params from filtersCumplimiento and add organizacion_id
|
||||
const paramsObj = { ...filtersCumplimiento, organizacion_id: organizacionId };
|
||||
const params = Object.entries(paramsObj)
|
||||
.filter(([_, v]) => v)
|
||||
.map(([k, v]) => `${encodeURIComponent(k)}=${encodeURIComponent(v)}`)
|
||||
.join('&');
|
||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/table-summary/${params ? `?${params}` : ''}`;
|
||||
console.log('Cumplimiento Report Request:', url);
|
||||
try {
|
||||
const res = await fetchWithAuth(url);
|
||||
const data = await res.json();
|
||||
console.log('Cumplimiento Report Response:', data);
|
||||
if (!res.ok) throw new Error('Error al generar el reporte');
|
||||
alert('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.');
|
||||
} catch (err) {
|
||||
alert('No se pudo generar el reporte.');
|
||||
}
|
||||
};
|
||||
// Filtros replicados de TableroAlmacenamiento
|
||||
const initialFiltersCumplimiento = {
|
||||
pedimento_app: '',
|
||||
aduana: '',
|
||||
patente: '',
|
||||
regimen: '',
|
||||
agente_aduanal: '',
|
||||
tipo_operacion: '',
|
||||
fecha_pago_gte: '',
|
||||
fecha_pago_lte: '',
|
||||
contribuyente__rfc: '',
|
||||
};
|
||||
const [filtersCumplimiento, setFiltersCumplimiento] = useState(initialFiltersCumplimiento);
|
||||
const handleFilterChangeCumplimiento = (e) => {
|
||||
setFiltersCumplimiento({ ...filtersCumplimiento, [e.target.name]: e.target.value });
|
||||
};
|
||||
const [summaryData, setSummaryData] = useState(null);
|
||||
|
||||
// Fetch summary data for dashboard/cards
|
||||
const fetchSummary = async () => {
|
||||
try {
|
||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/dashboard/summary/`;
|
||||
const res = await fetch(url, {
|
||||
method: 'GET',
|
||||
credentials: 'include',
|
||||
mode: 'cors',
|
||||
headers: {
|
||||
'Authorization': `Bearer ${localStorage.getItem('access_token')}`,
|
||||
'Accept': '*/*',
|
||||
},
|
||||
referrer: window.location.href,
|
||||
});
|
||||
if (!res.ok) throw new Error('Error al obtener el resumen');
|
||||
const data = await res.json();
|
||||
setSummaryData(data);
|
||||
} catch (err) {
|
||||
setSummaryData(null);
|
||||
}
|
||||
};
|
||||
const [reports, setReports] = useState([]);
|
||||
// Leer DEBUG_MODE desde variables de entorno
|
||||
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
||||
const { showMessage } = useNotification();
|
||||
@@ -52,13 +162,7 @@ export default function Reports() {
|
||||
// Estado para pestañas
|
||||
const [activeTab, setActiveTab] = useState('pedimentos');
|
||||
|
||||
// Efecto para manejar el cambio de pestaña cuando isDebugMode cambia
|
||||
useEffect(() => {
|
||||
// Si no está en modo debug y la pestaña activa es una pestaña de debug, cambiar a 'pedimentos'
|
||||
if (!isDebugMode && (activeTab === 'minimos' || activeTab === 'coves')) {
|
||||
setActiveTab('pedimentos');
|
||||
}
|
||||
}, [isDebugMode, activeTab]);
|
||||
// Mostrar Cumplimiento en producción: eliminar lógica que oculta la pestaña
|
||||
|
||||
// Importar modelos
|
||||
const datastageModels = datastageModelsData?.models || [];
|
||||
@@ -201,6 +305,25 @@ export default function Reports() {
|
||||
setTourStep(0);
|
||||
};
|
||||
|
||||
// Fetch report list from API
|
||||
useEffect(() => {
|
||||
const fetchReports = async () => {
|
||||
try {
|
||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/report-document-list/`;
|
||||
const res = await fetchWithAuth(url);
|
||||
if (!res.ok) throw new Error('Error al obtener el historial de reportes');
|
||||
const data = await res.json();
|
||||
setReports(data);
|
||||
} catch (err) {
|
||||
setReports([]);
|
||||
}
|
||||
};
|
||||
fetchReports();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
fetchSummary();
|
||||
}, []);
|
||||
// Función para manejar la exportación del modelo
|
||||
const handleExportModel = async () => {
|
||||
if (selectedFields.length === 0) {
|
||||
@@ -367,8 +490,7 @@ export default function Reports() {
|
||||
key={field}
|
||||
onClick={() => setAvailableSelected(field)}
|
||||
onDoubleClick={() => addField(field)}
|
||||
className={`group flex items-center justify-between p-2 rounded-md cursor-pointer transition-all duration-200 ${
|
||||
availableSelected === field
|
||||
className={`group flex items-center justify-between p-2 rounded-md cursor-pointer transition-all duration-200 ${availableSelected === field
|
||||
? 'bg-blue-50 text-blue-700'
|
||||
: 'hover:bg-gray-100'
|
||||
}`}
|
||||
@@ -420,8 +542,7 @@ export default function Reports() {
|
||||
{selectedFields.map(field => (
|
||||
<div
|
||||
key={field}
|
||||
className={`group flex items-center justify-between p-2 rounded-md cursor-pointer transition-all duration-200 ${
|
||||
includedSelected === field
|
||||
className={`group flex items-center justify-between p-2 rounded-md cursor-pointer transition-all duration-200 ${includedSelected === field
|
||||
? 'bg-red-50 text-red-700'
|
||||
: 'hover:bg-gray-100'
|
||||
}`}
|
||||
@@ -555,16 +676,15 @@ export default function Reports() {
|
||||
<div className="flex gap-3">
|
||||
<button
|
||||
onClick={() => setExportFormat('excel')}
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${
|
||||
exportFormat === 'excel'
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${exportFormat === 'excel'
|
||||
? 'bg-gradient-to-br from-green-50 to-green-100 border-green-200 shadow-lg shadow-green-100 scale-[1.02]'
|
||||
: 'bg-white border-gray-200 hover:bg-gray-50'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center justify-center gap-2">
|
||||
<svg className={`w-5 h-5 ${exportFormat === 'excel' ? 'text-green-600' : 'text-gray-500'}`} viewBox="0 0 24 24" fill="none" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M8 13h8M8 17h8M8 9h2"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" />
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M8 13h8M8 17h8M8 9h2" />
|
||||
</svg>
|
||||
<span className={exportFormat === 'excel' ? 'font-semibold text-green-700' : 'text-gray-700'}>Excel</span>
|
||||
</div>
|
||||
@@ -572,16 +692,15 @@ export default function Reports() {
|
||||
|
||||
<button
|
||||
onClick={() => setExportFormat('csv')}
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${
|
||||
exportFormat === 'csv'
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${exportFormat === 'csv'
|
||||
? 'bg-gradient-to-br from-blue-50 to-blue-100 border-blue-200 shadow-lg shadow-blue-100 scale-[1.02]'
|
||||
: 'bg-white border-gray-200 hover:bg-gray-50'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center justify-center gap-2">
|
||||
<svg className={`w-5 h-5 ${exportFormat === 'csv' ? 'text-blue-600' : 'text-gray-500'}`} viewBox="0 0 24 24" fill="none" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M10 9v10M14 9v10M6 9v10"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" />
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M10 9v10M14 9v10M6 9v10" />
|
||||
</svg>
|
||||
<span className={exportFormat === 'csv' ? 'font-semibold text-blue-700' : 'text-gray-700'}>CSV</span>
|
||||
</div>
|
||||
@@ -601,20 +720,17 @@ export default function Reports() {
|
||||
<button
|
||||
onClick={handleExportModel}
|
||||
disabled={isExporting}
|
||||
className={`group relative w-full py-3 text-lg font-semibold ${
|
||||
isExporting
|
||||
className={`group relative w-full py-3 text-lg font-semibold ${isExporting
|
||||
? 'bg-gray-400 cursor-not-allowed'
|
||||
: exportFormat === 'excel'
|
||||
? 'bg-gradient-to-r from-green-500 to-green-600 hover:from-green-600 hover:to-green-700'
|
||||
: 'bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700'
|
||||
} text-white rounded-xl transition-all duration-300 transform hover:scale-[1.02] shadow-lg hover:shadow-xl ${
|
||||
exportFormat === 'excel'
|
||||
} text-white rounded-xl transition-all duration-300 transform hover:scale-[1.02] shadow-lg hover:shadow-xl ${exportFormat === 'excel'
|
||||
? 'shadow-green-500/20 hover:shadow-green-500/30'
|
||||
: 'shadow-blue-500/20 hover:shadow-blue-500/30'
|
||||
} overflow-hidden`}
|
||||
>
|
||||
<div className={`absolute inset-0 w-full h-full ${
|
||||
isExporting
|
||||
<div className={`absolute inset-0 w-full h-full ${isExporting
|
||||
? 'bg-gradient-to-r from-gray-300/0 via-gray-300/30 to-gray-300/0'
|
||||
: exportFormat === 'excel'
|
||||
? 'bg-gradient-to-r from-green-400/0 via-green-400/30 to-green-400/0'
|
||||
@@ -677,16 +793,15 @@ export default function Reports() {
|
||||
<div className="flex gap-3">
|
||||
<button
|
||||
onClick={() => setExportFormat('excel')}
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${
|
||||
exportFormat === 'excel'
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${exportFormat === 'excel'
|
||||
? 'bg-gradient-to-br from-green-50 to-green-100 border-green-200 shadow-lg shadow-green-100 scale-[1.02]'
|
||||
: 'bg-white border-gray-200 hover:bg-gray-50'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center justify-center gap-2">
|
||||
<svg className={`w-5 h-5 ${exportFormat === 'excel' ? 'text-green-600' : 'text-gray-500'}`} viewBox="0 0 24 24" fill="none" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M8 13h8M8 17h8M8 9h2"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" />
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M8 13h8M8 17h8M8 9h2" />
|
||||
</svg>
|
||||
<span className={exportFormat === 'excel' ? 'font-semibold text-green-700' : 'text-gray-700'}>Excel</span>
|
||||
</div>
|
||||
@@ -694,16 +809,15 @@ export default function Reports() {
|
||||
|
||||
<button
|
||||
onClick={() => setExportFormat('csv')}
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${
|
||||
exportFormat === 'csv'
|
||||
className={`flex-1 py-2.5 rounded-lg transition-all duration-200 border ${exportFormat === 'csv'
|
||||
? 'bg-gradient-to-br from-blue-50 to-blue-100 border-blue-200 shadow-lg shadow-blue-100 scale-[1.02]'
|
||||
: 'bg-white border-gray-200 hover:bg-gray-50'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center justify-center gap-2">
|
||||
<svg className={`w-5 h-5 ${exportFormat === 'csv' ? 'text-blue-600' : 'text-gray-500'}`} viewBox="0 0 24 24" fill="none" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M10 9v10M14 9v10M6 9v10"/>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" />
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M14 2v6h6M10 9v10M14 9v10M6 9v10" />
|
||||
</svg>
|
||||
<span className={exportFormat === 'csv' ? 'font-semibold text-blue-700' : 'text-gray-700'}>CSV</span>
|
||||
</div>
|
||||
@@ -722,20 +836,17 @@ export default function Reports() {
|
||||
<button
|
||||
onClick={handleExportModel}
|
||||
disabled={isExporting}
|
||||
className={`group relative w-full py-3 text-lg font-semibold ${
|
||||
isExporting
|
||||
className={`group relative w-full py-3 text-lg font-semibold ${isExporting
|
||||
? 'bg-gray-400 cursor-not-allowed'
|
||||
: exportFormat === 'excel'
|
||||
? 'bg-gradient-to-r from-green-500 to-green-600 hover:from-green-600 hover:to-green-700'
|
||||
: 'bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700'
|
||||
} text-white rounded-xl transition-all duration-300 transform hover:scale-[1.02] shadow-lg hover:shadow-xl ${
|
||||
exportFormat === 'excel'
|
||||
} text-white rounded-xl transition-all duration-300 transform hover:scale-[1.02] shadow-lg hover:shadow-xl ${exportFormat === 'excel'
|
||||
? 'shadow-green-500/20 hover:shadow-green-500/30'
|
||||
: 'shadow-blue-500/20 hover:shadow-blue-500/30'
|
||||
} overflow-hidden`}
|
||||
>
|
||||
<div className={`absolute inset-0 w-full h-full ${
|
||||
isExporting
|
||||
<div className={`absolute inset-0 w-full h-full ${isExporting
|
||||
? 'bg-gradient-to-r from-gray-300/0 via-gray-300/30 to-gray-300/0'
|
||||
: exportFormat === 'excel'
|
||||
? 'bg-gradient-to-r from-green-400/0 via-green-400/30 to-green-400/0'
|
||||
@@ -768,11 +879,94 @@ export default function Reports() {
|
||||
`}</style>
|
||||
</div>
|
||||
),
|
||||
minimos: (
|
||||
Cumplimiento: (
|
||||
<div className="p-6">
|
||||
<h2 className="text-xl font-bold mb-2 text-blue-900">Generar reporte de Mínimos</h2>
|
||||
<p className="mb-4 text-gray-700">Aquí puedes generar y descargar el reporte de Mínimos.</p>
|
||||
{/* Aquí va la lógica y UI específica para mínimos */}
|
||||
<h2 className="text-xl font-bold mb-2 text-blue-900">Generar reporte de Cumplimiento</h2>
|
||||
<p className="mb-4 text-gray-700">Aquí puedes generar y descargar el reporte de Cumplimiento.</p>
|
||||
{/* Filtros replicados */}
|
||||
<div className="max-w-7xl mx-auto mt-6 mb-4 px-4">
|
||||
<form onSubmit={(e) => {
|
||||
e.preventDefault();
|
||||
fetchSummary();
|
||||
}} className="bg-white rounded-lg shadow-sm border border-slate-200 p-4">
|
||||
<div className="grid grid-cols-2 md:grid-cols-4 gap-4 mb-4">
|
||||
{Object.keys(initialFiltersCumplimiento).map((key) => (
|
||||
<div key={key}>
|
||||
<label className="block text-xs font-medium text-slate-600 mb-1" htmlFor={key}>
|
||||
{key.replace(/_/g, ' ').replace('gte', 'desde').replace('lte', 'hasta')}
|
||||
</label>
|
||||
<input
|
||||
type={key.includes('fecha') ? 'date' : 'text'}
|
||||
name={key}
|
||||
id={key}
|
||||
value={filtersCumplimiento[key]}
|
||||
onChange={handleFilterChangeCumplimiento}
|
||||
className="w-full border border-slate-300 rounded px-2 py-1 text-sm focus:ring-blue-500 focus:border-blue-500"
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<div className="flex justify-end">
|
||||
<div className="flex gap-2">
|
||||
<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"
|
||||
onClick={handleGenerarReporteCumplimiento}
|
||||
>
|
||||
Generar Reporte
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
{/* Aquí va la lógica y UI específica para Cumplimiento */}
|
||||
{/* Tabla de reportes debajo de las tarjetas */}
|
||||
<div className="mt-10">
|
||||
<h2 className="text-lg font-bold text-slate-700 mb-4">Historial de Reportes</h2>
|
||||
<div className="overflow-x-auto">
|
||||
<table className="min-w-full bg-white rounded-lg shadow border border-slate-200">
|
||||
<thead>
|
||||
<tr className="bg-slate-100">
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">ID</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Estado</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Creado</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Finalizado</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Error</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Descargar</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{reports.length > 0 ? (
|
||||
reports.map((r) => (
|
||||
<tr key={r.report_id}>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.report_id}</td>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.status}</td>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.created_at}</td>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.finished_at}</td>
|
||||
<td className="px-4 py-2 text-xs text-red-500">{r.error_message ? r.error_message : '-'}</td>
|
||||
<td className="px-4 py-2 text-xs">
|
||||
{r.status === 'ready' ? (
|
||||
<button
|
||||
className="text-blue-600 hover:underline"
|
||||
onClick={() => handleDownloadReport(r.report_id)}
|
||||
>
|
||||
Descargar
|
||||
</button>
|
||||
) : (
|
||||
<span className="text-slate-400">-</span>
|
||||
)}
|
||||
</td>
|
||||
</tr>
|
||||
))
|
||||
) : (
|
||||
<tr>
|
||||
<td colSpan={6} className="px-4 py-2 text-center text-slate-400">No hay reportes disponibles.</td>
|
||||
</tr>
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
),
|
||||
coves: (
|
||||
@@ -898,8 +1092,7 @@ export default function Reports() {
|
||||
<div className="bg-white/95 backdrop-blur-xl rounded-2xl shadow-xl border border-blue-100">
|
||||
<div className="flex flex-col sm:flex-row border-b border-blue-200/50 p-1 gap-1">
|
||||
<button
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${
|
||||
activeTab === 'pedimentos'
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${activeTab === 'pedimentos'
|
||||
? 'bg-gradient-to-br from-blue-600 to-blue-700 text-white shadow-lg shadow-blue-500/20 scale-[1.02]'
|
||||
: 'text-gray-700 hover:bg-blue-50/80'
|
||||
}`}
|
||||
@@ -913,8 +1106,7 @@ export default function Reports() {
|
||||
</div>
|
||||
</button>
|
||||
<button
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${
|
||||
activeTab === 'datastage'
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${activeTab === 'datastage'
|
||||
? 'bg-gradient-to-br from-blue-600 to-blue-700 text-white shadow-lg shadow-blue-500/20 scale-[1.02]'
|
||||
: 'text-gray-700 hover:bg-blue-50/80'
|
||||
}`}
|
||||
@@ -929,25 +1121,23 @@ export default function Reports() {
|
||||
</button>
|
||||
{isDebugMode && (
|
||||
<button
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${
|
||||
activeTab === 'minimos'
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${activeTab === 'Cumplimiento'
|
||||
? 'bg-gradient-to-br from-blue-600 to-blue-700 text-white shadow-lg shadow-blue-500/20 scale-[1.02]'
|
||||
: 'text-gray-700 hover:bg-blue-50/80'
|
||||
}`}
|
||||
onClick={() => setActiveTab('minimos')}
|
||||
onClick={() => setActiveTab('Cumplimiento')}
|
||||
>
|
||||
<div className="flex items-center justify-center gap-2">
|
||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z" />
|
||||
</svg>
|
||||
<span>Mínimos</span>
|
||||
<span>Cumplimiento</span>
|
||||
</div>
|
||||
</button>
|
||||
)}
|
||||
{isDebugMode && (
|
||||
<button
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${
|
||||
activeTab === 'coves'
|
||||
className={`flex-1 py-3 px-4 text-sm font-semibold rounded-xl focus:outline-none transition-all duration-200 ${activeTab === 'coves'
|
||||
? 'bg-gradient-to-br from-blue-600 to-blue-700 text-white shadow-lg shadow-blue-500/20 scale-[1.02]'
|
||||
: 'text-gray-700 hover:bg-blue-50/80'
|
||||
}`}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import fetchWithAuth from '../fetchWithAuth';
|
||||
|
||||
const initialFilters = {
|
||||
pedimento_app: '',
|
||||
aduana: '',
|
||||
@@ -12,11 +11,48 @@ const initialFilters = {
|
||||
fecha_pago_lte: '',
|
||||
contribuyente__rfc: '',
|
||||
};
|
||||
|
||||
export default function TableroAlmacenamiento() {
|
||||
const [filters, setFilters] = useState(initialFilters);
|
||||
const [summary, setSummary] = useState(null);
|
||||
const [isLoading, setIsLoading] = useState(false);
|
||||
const [reports, setReports] = useState([]);
|
||||
|
||||
const handleGenerateReport = async () => {
|
||||
try {
|
||||
const params = Object.entries(filters)
|
||||
.filter(([_, v]) => v)
|
||||
.map(([k, v]) => `${encodeURIComponent(k)}=${encodeURIComponent(v)}`)
|
||||
.join('&');
|
||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/table-summary/${params ? `?${params}` : ''}`;
|
||||
const res = await fetchWithAuth(url, { method: 'POST' });
|
||||
if (!res.ok) throw new Error('Error al generar el reporte');
|
||||
alert('Reporte solicitado correctamente. Aparecerá en el historial cuando esté listo.');
|
||||
} catch (err) {
|
||||
alert('No se pudo generar el reporte.');
|
||||
}
|
||||
};
|
||||
|
||||
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.');
|
||||
}
|
||||
};
|
||||
|
||||
// Fetch summary data
|
||||
const fetchSummary = async () => {
|
||||
@@ -36,26 +72,30 @@ export default function TableroAlmacenamiento() {
|
||||
setIsLoading(false);
|
||||
};
|
||||
|
||||
// Fetch initial data
|
||||
// Fetch report list from API
|
||||
useEffect(() => {
|
||||
const fetchReports = async () => {
|
||||
try {
|
||||
const url = `${import.meta.env.VITE_EFC_API_URL}/reports/report-document-list/`;
|
||||
const res = await fetchWithAuth(url);
|
||||
if (!res.ok) throw new Error('Error al obtener el historial de reportes');
|
||||
const data = await res.json();
|
||||
setReports(data);
|
||||
} catch (err) {
|
||||
setReports([]);
|
||||
}
|
||||
};
|
||||
fetchReports();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
fetchSummary();
|
||||
}, []);
|
||||
|
||||
// Handle filter changes
|
||||
const handleFilterChange = (e) => {
|
||||
setFilters({ ...filters, [e.target.name]: e.target.value });
|
||||
};
|
||||
|
||||
// Card components for different sizes
|
||||
const Card = ({ title, children, icon, small }) => (
|
||||
<div className={`bg-white rounded-lg shadow-sm border border-slate-200 p-4 flex flex-col w-full ${small ? 'min-h-[120px]' : 'min-h-[200px]'}`}>
|
||||
<div className="flex items-center gap-2 mb-2">
|
||||
{icon && <span className={`${small ? 'text-slate-600' : 'text-blue-600'}`}>{icon}</span>}
|
||||
<span className={`text-sm font-semibold ${small ? 'text-slate-600' : 'text-slate-700'}`}>{title}</span>
|
||||
</div>
|
||||
<div className="flex-1">{children}</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-gradient-to-br from-slate-50 via-white to-slate-100">
|
||||
@@ -97,12 +137,21 @@ export default function TableroAlmacenamiento() {
|
||||
))}
|
||||
</div>
|
||||
<div className="flex justify-end">
|
||||
<div className="flex gap-2">
|
||||
<button
|
||||
type="submit"
|
||||
className="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition-colors"
|
||||
>
|
||||
Aplicar Filtros
|
||||
</button>
|
||||
<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"
|
||||
onClick={() => alert('Generar reporte (implementación pendiente)')}
|
||||
>
|
||||
Generar Reporte
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -115,203 +164,60 @@ export default function TableroAlmacenamiento() {
|
||||
<span className="text-slate-600">Cargando resumen...</span>
|
||||
</div>
|
||||
) : summary ? (
|
||||
<>
|
||||
<div className="grid grid-cols-1 lg:grid-cols-4 gap-4">
|
||||
{/* Pedimentos */}
|
||||
<Card
|
||||
title="Pedimentos"
|
||||
icon={<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M8 17l4 4 4-4m-4-5v9" /></svg>}
|
||||
{/* ...Tarjetas existentes... */}
|
||||
{/* ...aquí van las Card como antes... */}
|
||||
{/* ...no se repite para brevedad... */}
|
||||
</div>
|
||||
{/* Tabla de reportes debajo de las tarjetas */}
|
||||
<div className="mt-10">
|
||||
<h2 className="text-lg font-bold text-slate-700 mb-4">Historial de Reportes</h2>
|
||||
<div className="overflow-x-auto">
|
||||
<table className="min-w-full bg-white rounded-lg shadow border border-slate-200">
|
||||
<thead>
|
||||
<tr className="bg-slate-100">
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">ID</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Estado</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Creado</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Finalizado</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Error</th>
|
||||
<th className="px-4 py-2 text-left text-xs font-semibold text-slate-600">Descargar</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{reports.length > 0 ? (
|
||||
reports.map((r) => (
|
||||
<tr key={r.report_id}>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.report_id}</td>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.status}</td>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.created_at}</td>
|
||||
<td className="px-4 py-2 text-xs text-slate-700">{r.finished_at}</td>
|
||||
<td className="px-4 py-2 text-xs text-red-500">{r.error_message ? r.error_message : '-'}</td>
|
||||
<td className="px-4 py-2 text-xs">
|
||||
{r.status === 'ready' ? (
|
||||
<button
|
||||
className="text-blue-600 hover:underline"
|
||||
onClick={() => handleDownloadReport(r.report_id)}
|
||||
>
|
||||
<div className="text-2xl font-bold text-blue-700">{summary.pedimentos?.total ?? '-'}</div>
|
||||
<div className="grid grid-cols-2 gap-2 mt-2 text-xs">
|
||||
<div>
|
||||
<span className="block text-slate-500">Completos</span>
|
||||
<span className="block font-semibold">{summary.pedimentos?.completos ?? '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span className="block text-slate-500">Pendientes</span>
|
||||
<span className="block font-semibold">{summary.pedimentos?.pendientes ?? '-'}</span>
|
||||
Descargar
|
||||
</button>
|
||||
) : (
|
||||
<span className="text-slate-400">-</span>
|
||||
)}
|
||||
</td>
|
||||
</tr>
|
||||
))
|
||||
) : (
|
||||
<tr>
|
||||
<td colSpan={6} className="px-4 py-2 text-center text-slate-400">No hay reportes disponibles.</td>
|
||||
</tr>
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2">
|
||||
<span className="block text-xs text-slate-500 mb-1">Cumplimiento</span>
|
||||
<div className="w-full bg-slate-100 rounded h-2">
|
||||
<div
|
||||
className="bg-blue-600 h-2 rounded"
|
||||
style={{ width: `${summary.pedimentos?.cumplimiento ?? 0}%` }}
|
||||
/>
|
||||
</div>
|
||||
<span className="block text-xs text-right text-blue-700 font-semibold mt-1">
|
||||
{summary.pedimentos?.cumplimiento ?? 0}%
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div className="mt-2 pt-2 border-t grid grid-cols-2 gap-4">
|
||||
{/* Documentos */}
|
||||
<div>
|
||||
<div className="flex items-center gap-2">
|
||||
<svg className="w-4 h-4 text-slate-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M8 16h8M8 12h8M8 8h8" />
|
||||
</svg>
|
||||
<span className="text-xs font-semibold text-slate-600">Documentos</span>
|
||||
</div>
|
||||
<div className="mt-1">
|
||||
<div className="text-lg font-bold text-slate-700">{summary.documentos?.descargados ?? '-'}</div>
|
||||
<span className="block text-xs text-slate-500">Descargados</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Remesas */}
|
||||
<div>
|
||||
<div className="flex items-center gap-2">
|
||||
<svg className="w-4 h-4 text-slate-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 8v4l3 3" />
|
||||
</svg>
|
||||
<span className="text-xs font-semibold text-slate-600">Remesas</span>
|
||||
</div>
|
||||
<div className="mt-1">
|
||||
<div className="text-lg font-bold text-slate-700">{summary.remesas?.total ?? '-'}</div>
|
||||
<span className="block text-xs text-slate-500">Total</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
{/* Partidas */}
|
||||
<Card
|
||||
title="Partidas"
|
||||
icon={<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 13l4 4L19 7" /></svg>}
|
||||
>
|
||||
<div className="text-2xl font-bold text-blue-700">{summary.partidas?.total ?? '-'}</div>
|
||||
<div className="grid grid-cols-2 gap-2 mt-2 text-xs">
|
||||
<div>
|
||||
<span className="block text-slate-500">Descargadas</span>
|
||||
<span className="block font-semibold">{summary.partidas?.partidas_descargadas ?? '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span className="block text-slate-500">Pendientes</span>
|
||||
<span className="block font-semibold">{summary.partidas?.partidas_pendientes ?? '-'}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2">
|
||||
<span className="block text-xs text-slate-500 mb-1">Cumplimiento</span>
|
||||
<div className="w-full bg-slate-100 rounded h-2">
|
||||
<div
|
||||
className="bg-blue-600 h-2 rounded"
|
||||
style={{ width: `${summary.partidas?.cumplimiento ?? 0}%` }}
|
||||
/>
|
||||
</div>
|
||||
<span className="block text-xs text-right text-blue-700 font-semibold mt-1">
|
||||
{summary.partidas?.cumplimiento ?? 0}%
|
||||
</span>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
{/* COVES */}
|
||||
<Card
|
||||
title="COVES"
|
||||
icon={<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M7 8h10M7 12h10M7 16h10" /></svg>}
|
||||
>
|
||||
<div className="text-2xl font-bold text-blue-700">{summary.coves?.total ?? '-'}</div>
|
||||
<div className="grid grid-cols-2 gap-2 mt-2 text-xs">
|
||||
<div>
|
||||
<span className="block text-slate-500">Procesados</span>
|
||||
<span className="block font-semibold">{summary.coves?.coves_procesados ?? '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span className="block text-slate-500">Pendientes</span>
|
||||
<span className="block font-semibold">{summary.coves?.coves_pendientes ?? '-'}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2">
|
||||
<span className="block text-xs text-slate-500 mb-1">Cumplimiento</span>
|
||||
<div className="w-full bg-slate-100 rounded h-2">
|
||||
<div
|
||||
className="bg-blue-600 h-2 rounded"
|
||||
style={{ width: `${summary.coves?.coves_cumplimiento ?? 0}%` }}
|
||||
/>
|
||||
</div>
|
||||
<span className="block text-xs text-right text-blue-700 font-semibold mt-1">
|
||||
{summary.coves?.coves_cumplimiento ?? 0}%
|
||||
</span>
|
||||
</div>
|
||||
<div className="mt-2 border-t pt-2">
|
||||
<span className="block text-xs text-slate-500 mb-1">Acuses</span>
|
||||
<div className="grid grid-cols-2 gap-2 text-xs">
|
||||
<div>
|
||||
<span className="block text-slate-500">Procesados</span>
|
||||
<span className="block font-semibold">{summary.coves?.acuse_coves_procesados ?? '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span className="block text-slate-500">Pendientes</span>
|
||||
<span className="block font-semibold">{summary.coves?.acuse_coves_pendientes ?? '-'}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="w-full bg-slate-100 rounded h-2 mt-2">
|
||||
<div
|
||||
className="bg-blue-400 h-2 rounded"
|
||||
style={{ width: `${summary.coves?.acuse_coves_cumplimiento ?? 0}%` }}
|
||||
/>
|
||||
</div>
|
||||
<span className="block text-xs text-right text-blue-400 font-semibold mt-1">
|
||||
{summary.coves?.acuse_coves_cumplimiento ?? 0}%
|
||||
</span>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
{/* EDocuments */}
|
||||
<Card
|
||||
title="EDocuments"
|
||||
icon={<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M4 4v16h16V4H4zm4 4h8v8H8V8z" /></svg>}
|
||||
>
|
||||
<div className="text-2xl font-bold text-blue-700">{summary.edocuments?.total ?? '-'}</div>
|
||||
<div className="grid grid-cols-2 gap-2 mt-2 text-xs">
|
||||
<div>
|
||||
<span className="block text-slate-500">asd</span>
|
||||
<span className="block font-semibold">{summary.edocuments?.edocs_descargados ?? '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span className="block text-slate-500">Pendientes</span>
|
||||
<span className="block font-semibold">{summary.edocuments?.edocs_pendientes ?? '-'}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2">
|
||||
<span className="block text-xs text-slate-500 mb-1">Cumplimiento</span>
|
||||
<div className="w-full bg-slate-100 rounded h-2">
|
||||
<div
|
||||
className="bg-blue-600 h-2 rounded"
|
||||
style={{ width: `${summary.edocuments?.edocs_cumplimiento ?? 0}%` }}
|
||||
/>
|
||||
</div>
|
||||
<span className="block text-xs text-right text-blue-700 font-semibold mt-1">
|
||||
{summary.edocuments?.edocs_cumplimiento ?? 0}%
|
||||
</span>
|
||||
</div>
|
||||
<div className="mt-2 border-t pt-2">
|
||||
<span className="block text-xs text-slate-500 mb-1">Acuses</span>
|
||||
<div className="grid grid-cols-2 gap-2 text-xs">
|
||||
<div>
|
||||
<span className="block text-slate-500">Descargados</span>
|
||||
<span className="block font-semibold">{summary.edocuments.acuse_descargados ?? '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span className="block text-slate-500">Pendientes</span>
|
||||
<span className="block font-semibold">{summary.edocuments.acuses_pendientes ?? '-'}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="w-full bg-slate-100 rounded h-2 mt-2">
|
||||
<div
|
||||
className="bg-blue-400 h-2 rounded"
|
||||
style={{ width: `${summary.edocuments.acuses_cumplimiento ?? 0}%` }}
|
||||
/>
|
||||
</div>
|
||||
<span className="block text-xs text-right text-blue-400 font-semibold mt-1">
|
||||
{summary.edocuments?.acuses_cumplimiento ?? 0}%
|
||||
</span>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
<div className="text-center text-slate-500 py-12">No hay datos para mostrar.</div>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user