aboutsummaryrefslogtreecommitdiff
path: root/src/ee/digikey/bom.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/digikey/bom.py')
-rw-r--r--src/ee/digikey/bom.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ee/digikey/bom.py b/src/ee/digikey/bom.py
index cb02f05..bf5456c 100644
--- a/src/ee/digikey/bom.py
+++ b/src/ee/digikey/bom.py
@@ -19,11 +19,12 @@ def create_bom(bom_path: Path, part_files: List[Path], out_path: Path, allow_inc
with out_path.open("w") as f:
w = csv.writer(f)
- w.writerow(["Digi-Key Part Number", "Quantity", "Reference Designator"])
+ w.writerow(["Digi-Key Part Number", "Manufacturer Part Number", "Quantity", "Reference Designator"])
for line in bom.lines:
line = [
line.part.get_exactly_one_spn().valueProp,
+ line.part.get_exactly_one_mpn().valueProp,
int(ceil(len(line.refs) * quantity)),
join_refs(line.refs)]
w.writerow([str(cell) for cell in line])