Patentes en CRUD - Solicitudes de Importación
This commit is contained in:
@@ -84,10 +84,10 @@
|
||||
<?php foreach ($agentes as $a): ?>
|
||||
<tr>
|
||||
<td><?= $a['id_usuario'] ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($a['nombre'])) ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($a['email'])) ?></td>
|
||||
<td><?= htmlspecialchars($a['tipo_usuario_sistema']) ?></td>
|
||||
<td><?= htmlspecialchars($a['creado_por']) ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($a['nombre'] ?? '')) ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($a['email'] ?? '')) ?></td>
|
||||
<td><?= htmlspecialchars($a['tipo_usuario_sistema'] ?? '') ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($a['nombre_creador'] ?? '')) ?></td>
|
||||
<td><?= isset($a['creado_en']) && $a['creado_en'] instanceof DateTime ? $a['creado_en']->format('Y-m-d H:i') : '' ?></td>
|
||||
<td>
|
||||
<?php if (in_array($a['tipo_usuario_sistema'], ['agente_aduanal'])): ?>
|
||||
|
||||
Reference in New Issue
Block a user