forked from mgherghi/inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreports.php
48 lines (44 loc) · 2 KB
/
reports.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
<?php
$page_title = 'Reports';
require_once('includes/load.php');
// Checkin What level user has permission to view this page
page_require_level(3);
$all_products = find_all('products');
$modifier = (int)$_GET['id'];
$today = make_date();
?>
<?php include_once('layouts/header.php'); ?>
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center" style="width: 10%;"> Name </th>
<th class="text-center" style="width: 10%;"> GPC P/N </th>
<th class="text-center" style="width: 10%;"> Location </th>
<th class="text-center" style="width: 10%;"> Quantity </th>
<th class="text-center" style="width: 10%;"> Manufacturer </th>
<th class="text-center" style="width: 10%;"> Manufacturer P/N </th>
<th class="text-center" style="width: 10%;"> Supplier </th>
<th class="text-center" style="width: 10%;"> Alternate Manufacturer </th>
<th class="text-center" style="width: 10%;"> Alternate Manufacturer P/N </th>
<th class="text-center" style="width: 10%;"> Alternate Supplier </th>
</tr>
</thead>
<?php foreach ($all_products as $product): ?>
<tr>
<?php if (strtotime($product[date]) < strtotime('-'.$modifier.' months')){
echo '<td class="text-center"><a href="view_product.php?id='.$product['id'].'">'.$product['name'].'</td>';
echo '<td class="text-center">'.$product[gpc_number].'</td>';
echo '<td class="text-center">'.$product[location].'</td>';
echo '<td class="text-center">'.$product[quantity].'</td>';
echo '<td class="text-center">'.$product[manufacturer].'</td>';
echo '<td class="text-center">'.$product[manufacturernumber].'</td>';
echo '<td class="text-center">'.$product[supplier].'</td>';
echo '<td class="text-center">'.$product[alt_manufacturer].'</td>';
echo '<td class="text-center">'.$product[alt_manufacturernumber].'</td>';
echo '<td class="text-center">'.$product[alt_supplier].'</td>';
}
?>
</tr>
<?php endforeach; ?>
</table>
<?php include_once('layouts/footer.php'); ?>