92 lines
3.4 KiB
PHP
92 lines
3.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>📁 Expediente Electrónico</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
<style>
|
|
body { font-family: 'Segoe UI', sans-serif; background-color: #f4f6f9; }
|
|
.sidebar {
|
|
width: 220px;
|
|
height: 100vh;
|
|
background-color: #343a40;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
padding-top: 56px;
|
|
z-index: 1040;
|
|
}
|
|
.sidebar .nav-link {
|
|
font-weight: bold;
|
|
color: white;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.sidebar .nav-link:hover, .sidebar .nav-link.active {
|
|
background-color: #495057;
|
|
color: #fff;
|
|
}
|
|
.content {
|
|
margin-top: 56px;
|
|
padding: 40px 20px;
|
|
position: relative;
|
|
z-index: 1;
|
|
background-color: #f4f6f9;
|
|
transition: margin-left 0.3s ease;
|
|
}
|
|
@media (min-width: 768px) { .content { margin-left: 250px; } }
|
|
@media (max-width: 767.98px) {
|
|
.content { margin-left: 0; }
|
|
.sidebar .nav-link { font-weight: normal; color: #343a40; background-color: transparent; }
|
|
.sidebar .nav-link:hover, .sidebar .nav-link.active { background-color: #e9ecef; color: #212529; }
|
|
}
|
|
.card { border-radius: 12px; }
|
|
.table th, .table td { vertical-align: middle; }
|
|
.folder-icon { color: #f0ad4e; font-size: 1.2rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<?php include __DIR__ . '/../partials/sidebar_importador.php'; ?>
|
|
<div class="content">
|
|
<h4 class="mb-4">📁 Expedientes Electrónicos</h4>
|
|
<div class="card p-3 shadow-sm">
|
|
<div class="table-responsive">
|
|
<table class="table table-hover table-bordered">
|
|
<thead class="table-light">
|
|
<tr>
|
|
<th>Pedimento</th>
|
|
<th>Fecha Factura</th>
|
|
<th>Aduana</th>
|
|
<th>Proveedor</th>
|
|
<th>Archivos</th>
|
|
<th>Tamaño Total</th>
|
|
<th>Acciones</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($expedientes as $exp): ?>
|
|
<tr>
|
|
<td><i class="fas fa-folder folder-icon me-2"></i><?= htmlspecialchars($exp['numero_pedimento']) ?></td>
|
|
<td><?= is_a($exp['fecha_factura'], 'DateTime') ? $exp['fecha_factura']->format('Y-m-d') : htmlspecialchars($exp['fecha_factura']) ?></td>
|
|
|
|
<td><?= htmlspecialchars($exp['aduana']) ?></td>
|
|
<td><?= htmlspecialchars($exp['proveedor_clave']) ?></td>
|
|
<td><?= $exp['total_archivos'] ?> archivos</td>
|
|
<td><?= number_format($exp['total_tamano'], 2) ?> KB</td>
|
|
<td>
|
|
<a href="/IMPORTADORES/expediente/ver/<?= $exp['id_solicitud'] ?>" class="btn btn-outline-primary btn-sm">📂 Ver</a>
|
|
<a href="/IMPORTADORES/expediente/subir/<?= $exp['id_solicitud'] ?>" class="btn btn-outline-success btn-sm">⬆ Subir</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|