se agrego referencia a pedimento

This commit is contained in:
2025-10-12 08:04:10 -06:00
parent 03a9f793b1
commit 5c8380a772

View File

@@ -706,7 +706,11 @@ export default function Procesos() {
{proc.task_id}
</button>
</td>
<td className="px-4 py-4 whitespace-nowrap align-middle text-sm font-medium text-gray-900">{proc.pedimento_app || '-'}</td>
<td className="px-4 py-4 whitespace-nowrap align-middle text-sm font-medium text-gray-900">
<Link to={`/expedientes/pedimento/${proc.pedimento}`} className='hover:text-blue-500 hover:text-bold hover:text-underline'>
{proc.pedimento_app || '-'}
</Link>
</td>
<td className="px-4 py-4 whitespace-nowrap align-middle">
{(() => {
const estado = proc.status?.toLowerCase() === 'pending' ? { text: 'En Espera', color: 'bg-yellow-100 text-yellow-800 border-yellow-200' }