36 lines
942 B
HTML
36 lines
942 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Reporte de Ventas</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="report-container">
|
|
<h2>Reporte de Ventas</h2>
|
|
|
|
<label for="fecha">Seleccionar Fecha:</label>
|
|
<input type="date" id="fecha">
|
|
|
|
<button onclick="generarReporte()">Generar Reporte</button>
|
|
|
|
<table id="reporte">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Precio</th>
|
|
<th>No. Asiento</th>
|
|
<th>Fecha de Venta</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Los datos se llenarán dinámicamente con JS -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|