Aleksmorshen commited on
Commit
f81195b
·
verified ·
1 Parent(s): e256951

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -14
index.html CHANGED
@@ -15,7 +15,8 @@
15
  <input type="text" id="productName" placeholder="Название товара" required>
16
  <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
17
  <input type="number" id="salePrice" placeholder="Отпускная цена" required>
18
- <input type="number" id="quantity" placeholder="Остаток" required>
 
19
  <button type="submit">Добавить товар</button>
20
  </form>
21
 
@@ -31,7 +32,9 @@
31
  <th>Название</th>
32
  <th>Приходная цена</th>
33
  <th>Отпускная цена</th>
34
- <th>Остаток</th>
 
 
35
  </tr>
36
  </thead>
37
  <tbody>
@@ -39,17 +42,6 @@
39
  </tbody>
40
  </table>
41
 
42
- <!-- Модальное окно -->
43
- <div id="modal" class="modal">
44
- <div class="modal-content">
45
- <span class="close">&times;</span>
46
- <h2>Выберите действие</h2>
47
- <button onclick="handleAddToCart()">Добавить в корзину</button>
48
- <button onclick="handleAddStock()">Приход</button>
49
- <button onclick="handleDeleteProduct()">Удалить</button>
50
- </div>
51
- </div>
52
-
53
  <!-- Корзина -->
54
  <div class="cart">
55
  <h2>Корзина</h2>
@@ -74,7 +66,7 @@
74
  <div class="stats">
75
  <h2>Статистика продаж за месяц</h2>
76
  <p>Общее количество проданных товаров: <span id="totalSold">0</span></p>
77
- <p>Общая выручка: <span id="totalRevenue">0</span> руб.</p>
78
  </div>
79
  </div>
80
  <script src="script.js"></script>
 
15
  <input type="text" id="productName" placeholder="Название товара" required>
16
  <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
17
  <input type="number" id="salePrice" placeholder="Отпускная цена" required>
18
+ <input type="number" id="quantity" placeholder="Остаток (пачек)" required>
19
+ <input type="number" id="itemsPerPack" placeholder="Количество штук в пачке" required>
20
  <button type="submit">Добавить товар</button>
21
  </form>
22
 
 
32
  <th>Название</th>
33
  <th>Приходная цена</th>
34
  <th>Отпускная цена</th>
35
+ <th>Остаток (пачек)</th>
36
+ <th>Штук в пачке</th>
37
+ <th>Действия</th>
38
  </tr>
39
  </thead>
40
  <tbody>
 
42
  </tbody>
43
  </table>
44
 
 
 
 
 
 
 
 
 
 
 
 
45
  <!-- Корзина -->
46
  <div class="cart">
47
  <h2>Корзина</h2>
 
66
  <div class="stats">
67
  <h2>Статистика продаж за месяц</h2>
68
  <p>Общее количество проданных товаров: <span id="totalSold">0</span></p>
69
+ <p>Общая выручка: <span id="totalRevenue">0</span></p>
70
  </div>
71
  </div>
72
  <script src="script.js"></script>