-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGestion_Inventario.html
106 lines (94 loc) · 3.54 KB
/
Gestion_Inventario.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inventario</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/exceljs/4.1.1/exceljs.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.5/FileSaver.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.3/jspdf.umd.min.js"></script>
</head>
<body>
<h1>Gestión de productos</h1>
<h2>Almacenar Producto</h2>
<form id="productForm">
<label for="productName">Nombre del producto:</label>
<input type="text" id="productName" required>
<label for="quantity">Cantidad por pieza:</label>
<input type="number" id="quantity" min="1" required>
<label for="price">Precio Original por pieza:</label>
<input type="number" id="price" min="0.01" step="0.01" required>
<button type="submit">Agregar</button>
</form>
<h2>Productos</h2>
<div id="productTableContainer">
<table id="productTable">
<thead>
<tr>
<th>Nombre Producto</th>
<th>Cantidad por pieza</th>
<th>Precio por pieza</th>
<th>Total Inversión</th>
</tr>
</thead>
<tbody id="productTableBody">
<!-- Aquí se insertarán las filas de productos -->
</tbody>
</table>
</div>
<h2>Administrar Stock</h2>
<form id="stockForm">
<label for="stockProduct">Seleccionar producto:</label>
<select id="stockProduct">
<!-- Opciones de productos se generarán dinámicamente aquí -->
</select>
<label for="stockAction">Acción:</label>
<select id="stockAction">
<option value="add">Agregar Piezas</option>
<option value="remove">Quitar Piezas</option>
</select>
<label for="stockQuantity">Cantidad:</label>
<input type="number" id="stockQuantity" min="1" required>
<button type="submit">Actualizar Stock</button>
</form>
<h2>Venta de Producto</h2>
<div id="sellProductForm">
<label for="selectProduct">Seleccionar producto:</label>
<select id="selectProduct">
<!-- Opciones de productos se generarán dinámicamente aquí -->
</select>
<label for="sellType">Vender por pieza o por paquete:</label>
<select id="sellType">
<option value="pieza">Por pieza</option>
<option value="paquete">Por paquete(Piezas)</option>
</select>
<label for="sellQuantity">Cantidad a vender:</label>
<input type="number" id="sellQuantity" min="1" required>
<label for="newPrice">Precio Venta (Por pieza):</label>
<input type="number" id="newPrice" min="0.01" step="0.01">
<button id="sellButton">Vender</button>
<button id="generateTicketButton">Generar Ticket de Venta</button>
</div>
<h2>Inventario</h2>
<div id="inventoryTableContainer">
<table id="inventoryTable">
<!-- Aquí se insertará la tabla de inventario -->
</table>
</div>
<h2>Inversión y Ganancias</h2>
<div id="investmentTableContainer">
<table id="investmentTable">
<!-- Aquí se insertará la tabla de inversión y ganancias -->
</table>
</div>
<!-- Botones en un nuevo contenedor div -->
<div id="buttonContainer">
<button id="exportToExcelButton">Exportar a Excel</button>
<button id="saveLocallyButton">Guardar Datos Localmente</button>
<button id="clearDataButton">Eliminar todos los datos de las tablas</button>
<button id="logoutButton">Cerrar Sesión</button>
</div>
<script src="js/script.js"></script>
</body>
</html>