-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprod-inventory.html
144 lines (129 loc) · 4.27 KB
/
prod-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div>
<div id="Product" onclick="handleproduct()" style="background-color: white; width: 84%; border: 2px solid rgb(62, 163, 101);" class="mx-auto p-4">
<div id="inv">
<div class="container">
<h3>Product Inventory</h3>
<table id="customers">
<thead>
<tr>
<th>Product Id</th>
<th>Type</th>
<th>Product Name</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody id="productTable">
</tbody>
</table>
<div class="mt-5">
<button onclick="" class="btn btn-success" id="updateBtn">Update</button>
<button onclick="" class="btn btn-success ml-3" id="insertBtn">Insert</button>
<button onclick="" class="btn btn-success ml-3" id="deleteBtn">Delete</button>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div>
<div id="Supplies" onclick="handlesupply()" style="background-color: white; width: 84%; border: 2px solid rgb(62, 163, 101);" class="mx-auto p-4">
<div id="supplies">
<div class="container">
<h3>Supplies</h3>
<table id="customers">
<thead>
<tr>
<th>Supply Id</th>
<th>Name</th>
<th>Type</th>
<th>Supply For</th>
<th>Price</th>
<th>Branch ID</th>
</tr>
</thead>
<tbody id="supplyTable">
</tbody>
</table>
<div class="mt-5">
<button onclick="" class="btn btn-success" id="updateBtn">Update</button>
<button onclick="" class="btn btn-success ml-3" id="insertBtn">Insert</button>
<button onclick="" class="btn btn-success ml-3" id="deleteBtn">Delete</button>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div>
<div id="Equipment" style="background-color: white; width: 84%; border: 2px solid rgb(62, 163, 101);" class="mx-auto p-4">
<div onclick="handleEquipment()">
<div class="container">
<h3>Equipments</h3>
<table id="customers">
<thead>
<tr>
<th>Equepments Id</th>
<th>Name</th>
<th>Type</th>
<th>Buying Date</th>
<th>Role</th>
<th>Branch ID</th>
</tr>
</thead>
<tbody id="equipmentTable">
</tbody>
</table>
<div class="mt-5">
<button onclick="" class="btn btn-success" id="updateBtn">Update</button>
<button onclick="" class="btn btn-success ml-3" id="insertBtn">Insert</button>
<button onclick="" class="btn btn-success ml-3" id="deleteBtn">Delete</button>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div>
<div id="Employee" style="background-color: white; width: 84%; border: 2px solid rgb(62, 163, 101);" class="mx-auto p-4">
<div onclick="handleEmployee()" id="employee">
<div class="container">
<h3>Employee Table</h3>
<table id="customers">
<thead>
<tr>
<th>Employee ID</th>
<th>Branch ID</th>
<th>Name</th>
<th>Working Hour</th>
<th>Salary</th>
<th>Status</th>
<th>Role</th>
</tr>
</thead>
<tbody id="employeeTable">
</tbody>
</table>
<div class="mt-5">
<button onclick="" class="btn btn-success" id="updateBtn">Update</button>
<button onclick="" class="btn btn-success ml-3" id="insertBtn">Insert</button>
<button onclick="" class="btn btn-success ml-3" id="deleteBtn">Delete</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>