-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpiredproducts.php
executable file
·49 lines (49 loc) · 1.91 KB
/
expiredproducts.php
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
<?php
require_once dirname(__FILE__).'/include/header.php';
require_once dirname(__FILE__).'/include/api.php';
require_once dirname(__FILE__).'/include/navbar.php';
?>
<div class="socialcodia" style="margin-top: -30px">
<div class="row">
<div class="col l12 s12 m12" style="padding: 30px 0px 30px 10px;">
<div class="card z-depth-0">
<div class="card-content">
<div class="input-field">
<input type="text" name="productName" id="productName" placeholder="" onkeyup="filterProduct()">
<label for="productName">Enter Product Name</label>
</div>
</div>
</div>
<div id="productList">
<div class="card z-depth-0">
<table id="mstrTable" class="highlight responsive-table ">
<thead>
<tr>
<th>Sr No</th>
<th>Category</th>
<th>Name</th>
<th>Size</th>
<th>Price</th>
<th>Quantity</th>
<th>Location</th>
<th>Brand</th>
<th>Manufacture</th>
<th>Expire</th>
</tr>
</thead>
<tbody id="tableBody">
</tbody>
</table>
<div id="divProcess"></div>
<div class="row green lighten-4">
<div class="col l12 m12 s12 center">
<h5>Total Price = <span class="blue-text" style="font-weight: bold" id="totalAmount"></span></h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php require_once dirname(__FILE__).'/include/sidenav.php'; ?>
<?php require_once dirname(__FILE__).'/include/footer.php'; ?>