Aleksmorshen commited on
Commit
4c362e7
·
verified ·
1 Parent(s): aa75c22

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +7 -4
index.html CHANGED
@@ -25,7 +25,8 @@
25
  <form id="productForm">
26
  <input type="text" id="productName" placeholder="Название товара" required>
27
  <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
28
- <input type="number" id="salePrice" placeholder="Отпускная цена" required>
 
29
  <input type="number" id="quantity" placeholder="Остаток (пачек)" required>
30
  <input type="number" id="itemsPerPack" placeholder="Количество штук в пачке" required>
31
  <button type="submit">Добавить товар</button>
@@ -42,7 +43,8 @@
42
  <tr>
43
  <th>Название</th>
44
  <th>Приходная цена</th>
45
- <th>Отпускная цена</th>
 
46
  <th>Остаток (пачек)</th>
47
  <th>Штук в пачке</th>
48
  <th>Действия</th>
@@ -63,6 +65,7 @@
63
  <th>Название</th>
64
  <th>Количество</th>
65
  <th>Цена за единицу</th>
 
66
  <th>Итого</th>
67
  <th>Действия</th>
68
  </tr>
@@ -111,9 +114,9 @@
111
  <thead>
112
  <tr>
113
  <th>Название</th>
114
- <th>Количество (пачек)</th>
115
- <th>Штук в пачке</th>
116
  <th>Цена за единицу</th>
 
117
  <th>Итого</th>
118
  </tr>
119
  </thead>
 
25
  <form id="productForm">
26
  <input type="text" id="productName" placeholder="Название товара" required>
27
  <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
28
+ <input type="number" id="wholesalePrice" placeholder="Оптовая цена">
29
+ <input type="number" id="retailPrice" placeholder="Розничная цена">
30
  <input type="number" id="quantity" placeholder="Остаток (пачек)" required>
31
  <input type="number" id="itemsPerPack" placeholder="Количество штук в пачке" required>
32
  <button type="submit">Добавить товар</button>
 
43
  <tr>
44
  <th>Название</th>
45
  <th>Приходная цена</th>
46
+ <th>Оптовая цена</th>
47
+ <th>Розничная цена</th>
48
  <th>Остаток (пачек)</th>
49
  <th>Штук в пачке</th>
50
  <th>Действия</th>
 
65
  <th>Название</th>
66
  <th>Количество</th>
67
  <th>Цена за единицу</th>
68
+ <th>Тип продажи</th>
69
  <th>Итого</th>
70
  <th>Действия</th>
71
  </tr>
 
114
  <thead>
115
  <tr>
116
  <th>Название</th>
117
+ <th>Количество</th>
 
118
  <th>Цена за единицу</th>
119
+ <th>Тип продажи</th>
120
  <th>Итого</th>
121
  </tr>
122
  </thead>