summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/part-lister/views/supplier.mouser_parts_list.php
blob: 9ec4ca268f75e1007951efcafd33a841ee71f188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<p>
	Copy and paste the text below into their <a href="http://www.mouser.com/BOM/BOM.aspx">BOM Importer tool</a>.  You'll need to register a Mouser account, but you need one anyway to check out.
</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
	));
?>