130 lines
4.2 KiB
PHP
130 lines
4.2 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="es">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>➕ Nuevo Transporte</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>
|
||
<link href="https://cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css" rel="stylesheet">
|
||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||
<style>
|
||
table.dataTable thead th { background:#343a40; color:#fff; }
|
||
|
||
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: 60px;
|
||
}
|
||
.sidebar .nav-link {
|
||
color: #ccc;
|
||
padding: 12px 20px;
|
||
}
|
||
.sidebar .nav-link:hover,
|
||
.sidebar .nav-link.active {
|
||
background-color: #495057;
|
||
color: #fff;
|
||
}
|
||
.sidebar .nav-link {
|
||
color: #ccc;
|
||
padding: 12px 20px;
|
||
}
|
||
.sidebar .nav-link:hover, .sidebar .nav-link.active {
|
||
background-color: #495057;
|
||
color: #fff;
|
||
}
|
||
.content {
|
||
margin-left: 220px;
|
||
padding: 40px 20px;
|
||
}
|
||
.navbar {
|
||
position: fixed;
|
||
top: 0;
|
||
width: 100%;
|
||
z-index: 1000;
|
||
}
|
||
|
||
.card {
|
||
border-radius: 12px;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
|
||
|
||
<body>
|
||
<?php include __DIR__ . '/../partials/sidebar_importador.php'; ?>
|
||
<div class="content">
|
||
<br> <br>
|
||
<h4>➕ Nuevo Transporte</h4>
|
||
<form id="formTransCrear" action="/IMPORTADORES/transportes/guardar" method="POST" enctype="multipart/form-data" class="card p-4 shadow-sm">
|
||
<div class="row g-3">
|
||
<div class="col-md-6">
|
||
<label class="form-label">Vehículo *</label>
|
||
<input name="vehiculo" id="vehiculo" class="form-control" required>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<label class="form-label">Identificador fiscal *</label>
|
||
<input name="identificador_fiscal" id="identFiscal" class="form-control" required>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<label class="form-label">Foto (opcional)</label>
|
||
<input type="file" name="foto" id="foto" class="form-control" accept="image/*">
|
||
</div>
|
||
<div class="col-md-6">
|
||
<label class="form-label">Transportista *</label>
|
||
<select name="id_transportista" id="transportista" class="form-select" required>
|
||
<option value="">Selecciona...</option>
|
||
<?php foreach($transportistas as $tr): ?>
|
||
<option value="<?= $tr['id_transportista'] ?>">
|
||
<?= htmlspecialchars($tr['nombre']) ?>
|
||
</option>
|
||
<?php endforeach; ?>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
<div class="text-end mt-4">
|
||
<button type="submit" class="btn btn-success">Guardar</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<script>
|
||
document.getElementById('formTransCrear').addEventListener('submit', function(e) {
|
||
// Campos que validamos:
|
||
const veh = document.getElementById('vehiculo').value.trim();
|
||
const fisc = document.getElementById('identFiscal').value.trim();
|
||
const trans = document.getElementById('transportista').value;
|
||
const fotoF = document.getElementById('foto').files[0];
|
||
|
||
if (!veh) {
|
||
e.preventDefault();
|
||
return Swal.fire({ icon:'error', title:'Vehículo requerido', text:'Por favor ingresa el nombre del vehículo.' });
|
||
}
|
||
if (!fisc) {
|
||
e.preventDefault();
|
||
return Swal.fire({ icon:'error', title:'Identificador fiscal requerido', text:'Por favor ingresa el identificador fiscal.' });
|
||
}
|
||
if (!trans) {
|
||
e.preventDefault();
|
||
return Swal.fire({ icon:'error', title:'Transportista no seleccionado', text:'Debes elegir un transportista.' });
|
||
}
|
||
if (fotoF && fotoF.size > 2 * 1024 * 1024) { // 2 MB
|
||
e.preventDefault();
|
||
return Swal.fire({ icon:'error', title:'Foto demasiado grande', text:'La imagen no debe exceder 2 MB.' });
|
||
}
|
||
// Si todas las validaciones pasan, el formulario se envía.
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|
||
|