summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/part-lister/views/main.statistics.php
blob: 5d22c7d8e64c5df4dbad2d3d52e8ec4ddb5e6669 (plain)
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
<h1>Statistics</h1>

<ul>
	<li><?=$supplier_count?> suppliers with <?=$supplier_part_count?> total supplied parts.</li>
	<li><?=$raw_part_count?> total raw part entries in Bill of Materials.</li>
	<li><?=$rough_unique_count?> rough unique parts count.</li>
</ul>

<h2>Unique Parts</h2>
<table>
	<tr>
		<th>Type</th>
		<th>Quantity</th>
		<th>Percentage</th>
	</tr>
	<? foreach ($part_types AS $row): ?>
		<tr>
			<td><a href="/type/<?=$row['type']?>"><?=UniquePart::typeToEnglish($row['type'])?></a></td>
			<td align="right"><?=$row['cnt']?></td>
			<td align="right"><?=number_format(($row['cnt']/$unique_part_count) * 100, 2)?>%
		</tr>
	<? endforeach ?>
	<tr>
		<td><b>Total:</b></td>
		<td align="right"><b><?=$unique_part_count?></b></td>
</table>


<h2>List of parts (sorted by quantity needed)</h2>
<table>
	<tr>
		<th>Part</th>
		<th>Type</th>
		<th>Quantity</th>
		<th>Units</th>
	</tr>
	<? foreach ($unique_quantities AS $id => $qty): ?>
		<? $part = $unique_parts->getUnique($id); ?>
		<tr>
			<td><b><a href="<?=$part->getViewUrl()?>"><?=$part->get('name')?></a></b></td>
			<td><a href="/type/<?=$part->get('type')?>"><?=UniquePart::typeToEnglish($part->get('type'))?></a></td>
			<td align="right"><?=$qty?></td>
			<td><?=$part->get('units')?></td>
		</tr>
	<? endforeach ?>
	
</table>