summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/part-lister/views/supplier.farnell_parts_list.php
blob: 37fc438ae25a81d24694c5dcb0bd197274e2b66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<p>
	Go to their website -> <b>Choose country</b> -> <b>Quick Paste</b>.  Then do just that with the text below.
</p>
<textarea width="100%" rows="<?=count($parts)?>" onfocus="this.select()"><?
	foreach ($parts AS $part)
		echo $part->get('part_num') . ", " . $part->orderQuantity() . "\n";
?></textarea>

<h4>Human Readable List:</h4>
<?
	echo Controller::byName('supplier')->renderView('generic_parts_list', array(
		'supplier' => $supplier,
		'parts' => $parts
	));
?>