-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinventory.html
310 lines (308 loc) · 11.9 KB
/
inventory.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inventory</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="./public/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<main>
<section class="sidebar">
<div class="title">
<h1>Inventory Management</h1>
</div>
<div class="menu">
<ul>
<li>
<a href="./"><span class="icon">
<i class="fas fa-chart-line"></i></span>
<span>Dashboard</span>
</a>
</li>
<li>
<a href="./inventory.html" class="active">
<span class="icon"><i class="fas fa-boxes"></i></span>
<span>Inventory Items</span>
</a>
</li>
<li>
<a href="./purchase.html">
<span class="icon"><i class="far fa-file-alt"></i></span>
<span>Purchase Orders</span>
</a>
</li>
<li>
<a href="./receipts.html">
<span class="icon"><i class="fas fa-truck-loading"></i></span>
<span>Good Receips</span>
</a>
</li>
<li>
<a href="./material.html">
<span class="icon"><i class="fas fa-dolly-flatbed"></i></span>
<span>Material Requitions</span>
</a>
</li>
</ul>
</div>
<footer>© Demon Slayers</footer>
</section>
<section class="main-content">
<header>
<h1>Inventory</h1>
</header>
<section class="content">
<div class="topnav">
<div class="filter">
<button height="32">
<span><i class="fa-solid fa-bars" style="color: #000000;"></i> Filters</span>
</button>
<button class="vl">
<span><i class="fa-sharp fa-solid fa-grip-lines-vertical" style="color: #000000;"></i></span>
</button>
</div>
<div size="2" style="flex: 0 0 auto;" class="btnspace"></div>
<div class="filltypes">
<button class="pr name">
<span>Product Name</span>
</button>
<div size="2" class="btnspace"></div>
<button >
<span>Product ID</span>
</button>
<div size="2" class="btnspace"></div>
<button>
<span>Quantity</span>
</button>
<div size="2" class="btnspace"></div>
</div>
<div class="right">
<button type="submit"><i class="fa fa-search"></i></button>
</div>
<div size="2" class="btnspace"></div>
<button class="addnew"><i class="fa fa-plus"></i> New</button>
<div size="2" class="btnspace"></div>
<button class="reorder"><i class="fas fa-shopping-cart"></i> Reorder</button>
</div>
<div>
<table class="inventory-table">
<div class="tbl-head">
<thead>
<th>Product Name</th>
<th>Product ID</th>
<th>Quantity</th>
<th>Retail Price</th>
</thead>
</div>
<div class="tbl-itm">
<tbody>
<tr>
<td>Atlas Chooty Pen - Black</td>
<td>2000</td>
<td>40</td>
<td>LKR20.00</td>
</tr>
<tr>
<td>Atlas Chooty Pen - Blue</td>
<td>2001</td>
<td>30</td>
<td>LKR20.00</td>
</tr>
<tr>
<td>Atlas Chooty Pen - Red</td>
<td>2002</td>
<td>20</td>
<td>LKR20.00</td>
</tr>
<tr>
<td>Atlas Duster</td>
<td>2003</td>
<td>10</td>
<td>LKR50.00</td>
</tr>
<tr>
<td>Atlas Puncher Large</td>
<td>2004</td>
<td>4</td>
<td>LKR500.00</td>
</tr>
<tr>
<td>Atlas Stapler - Large</td>
<td>2005</td>
<td>5</td>
<td>LKR725.00</td>
</tr>
<tr>
<td>Atlas Stapler - Small</td>
<td>2006</td>
<td>10</td>
<td>LKR110.00</td>
</tr>
<tr>
<td>Atlas Stapler Pin - Large</td>
<td>2007</td>
<td>10</td>
<td>LKR110.00</td>
</tr>
<tr>
<td>Atlas Stapler Pin - Small</td>
<td>2008</td>
<td>20</td>
<td>LKR85.00</td>
</tr>
<tr>
<td>Atlas Tape 48MMx25M - CLEAR</td>
<td>2009</td>
<td>15</td>
<td>LKR200.00</td>
</tr>
<tr>
<td>Atlas Tape 48MMx25M - TAN</td>
<td>2010</td>
<td>13</td>
<td>LKR120.00</td>
</tr>
<tr>
<td>Atlas Tape Large</td>
<td>2011</td>
<td>9</td>
<td>LKR100.00</td>
</tr>
<tr>
<td>Atlas Tape Medium</td>
<td>2012</td>
<td>14</td>
<td>LKR60.00</td>
</tr>
<tr>
<td>Atlas White Ink Bottle</td>
<td>2013</td>
<td>15</td>
<td>LKR180.00</td>
</tr>
<tr>
<td>Atlas Whiteboard Marker - Black</td>
<td>2014</td>
<td>30</td>
<td>LKR150.00</td>
</tr>
<tr>
<td>Atlas Whiteboard Marker - Blue</td>
<td>2015</td>
<td>20</td>
<td>LKR150.00</td>
</tr>
<tr>
<td>Atlas Whiteboard Marker - Red</td>
<td>2016</td>
<td>40</td>
<td>LKR150.00</td>
</tr>
<tr>
<td>Mango Cardboard File</td>
<td>2017</td>
<td>100</td>
<td>LKR40.00</td>
</tr>
<tr>
<td>Mango Eraser</td>
<td>2018</td>
<td>10</td>
<td>LKR20.00</td>
</tr>
<tr>
<td>Mango Permanent Marker - Black</td>
<td>2019</td>
<td>10</td>
<td>LKR250.00</td>
</tr>
<tr>
<td>Mango Permanent Marker - Blue</td>
<td>2020</td>
<td>5</td>
<td>LKR250.00</td>
</tr>
<tr>
<td>Mango Permanent Marker - Red</td>
<td>2021</td>
<td>11</td>
<td>LKR250.00</td>
</tr>
<tr>
<td>Promate A4 CR Book - 120PGS</td>
<td>2022</td>
<td>45</td>
<td>LKR300.00</td>
</tr>
<tr>
<td>Promate A4 CR Book - 160PGS</td>
<td>2023</td>
<td>60</td>
<td>LKR400.00</td>
</tr>
<tr>
<td>Promate A4 CR Book - 200PGS</td>
<td>2024</td>
<td>70</td>
<td>LKR550.00</td>
</tr>
<tr>
<td>Promate B5 Envelope</td>
<td>2025</td>
<td>50</td>
<td>LKR10.00</td>
</tr>
<tr>
<td>Promate Business File - A4</td>
<td>2026</td>
<td>58</td>
<td>LKR105.00</td>
</tr>
<tr>
<td>Promate Double A A4 Paper</td>
<td>2027</td>
<td>500</td>
<td>LKR10.00</td>
</tr>
<tr>
<td>Promate Envelop File - CLEAR</td>
<td>2028</td>
<td>24</td>
<td>LKR30.00</td>
</tr>
<tr>
<td>Promate Highlighter</td>
<td>2029</td>
<td>6</td>
<td>LKR140.00</td>
</tr>
<tr>
<td>Promate Legal Size Paper</td>
<td>2030</td>
<td>300</td>
<td>LKR25.00</td>
</tr>
<tr>
<td>Promate Window Envelop (3.5x6)</td>
<td>2031</td>
<td>100</td>
<td>LKR30.00</td>
</tr>
<tr>
<td>Promate Window Envelop (9.5x4.5)</td>
<td>2032</td>
<td>250</td>
<td>LKR45.00</td>
</tr>
</tbody>
</div>
</table>
</div>
</section>
</section>
</main>
</body>
</html>