Eliminar src/reporte.html
This commit is contained in:
parent
207e5a560a
commit
286e466ce1
src
|
@ -1,35 +0,0 @@
|
||||||
<!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>
|
|
Loading…
Reference in New Issue