Add DNP columns/grouping info to BOM script headers
This commit is contained in:
parent
a119263e29
commit
89a6e55e58
|
@ -7,9 +7,9 @@
|
|||
"""
|
||||
@package
|
||||
Output: CSV (comma-separated)
|
||||
Grouped By: Value, Symbol Name, Footprint
|
||||
Grouped By: Value, Symbol Name, Footprint, DNP
|
||||
Sorted By: Ref
|
||||
Fields: Item, Qty, Reference(s), Value, LibPart, Footprint, Datasheet, all additional symbol fields
|
||||
Fields: Item, Qty, Reference(s), Value, LibPart, Footprint, Datasheet, DNP, all additional symbol fields
|
||||
|
||||
Outputs ungrouped components first, then outputs grouped components.
|
||||
|
||||
|
|
|
@ -7,9 +7,9 @@
|
|||
"""
|
||||
@package
|
||||
Output: CSV (comma-separated)
|
||||
Grouped By: Value, Footprint
|
||||
Grouped By: Value, Footprint, DNP
|
||||
Sorted By: Ref
|
||||
Fields: Ref, Qnty, Value, Cmp name, Footprint, Description, Vendor
|
||||
Fields: Ref, Qnty, Value, Cmp name, Footprint, Description, Vendor, DNP
|
||||
|
||||
Command line:
|
||||
python "pathToFile/bom_csv_grouped_by_value_with_fp.py" "%I" "%O.csv"
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
"""
|
||||
@package
|
||||
Output: CSV (comma-separated)
|
||||
Grouped By: Value, Footprint, specified extra fields
|
||||
Grouped By: Value, Footprint, DNP, specified extra fields
|
||||
Sorted By: Reference
|
||||
Fields: #, Reference, Qty, Value, Footprint, specified extra fields
|
||||
|
||||
Fields: #, Reference, Qty, Value, Footprint, DNP, specified extra fields
|
||||
|
||||
Outputs components grouped by Value, Footprint, and specified extra fields.
|
||||
Extra fields can be passed as command line arguments at the end, one field per argument.
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
Output: CSV (comma-separated)
|
||||
Grouped By: ungrouped, one component per line
|
||||
Sorted By: Ref
|
||||
Fields: Ref, Value, Part, Footprint, Datasheet, Manufacturer, Vendor
|
||||
Fields: Ref, Value, Part, Footprint, Datasheet, Manufacturer, Vendor, DNP
|
||||
|
||||
Command line:
|
||||
python "pathToFile/bom_csv_sorted_by_ref.py" "%I" "%O.csv"
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
"""
|
||||
@package
|
||||
Output: HTML
|
||||
Grouped By: Value
|
||||
Grouped By: Value, DNP
|
||||
Sorted By: Ref
|
||||
Fields: Ref, Qnty, Value, Part, Datasheet, Description, Vendor
|
||||
Fields: Ref, Qnty, Value, Part, Datasheet, Description, Vendor, DNP
|
||||
|
||||
Command line:
|
||||
python "pathToFile/bom_html_grouped_by_value.py" "%I" "%O.html"
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
"""
|
||||
@package
|
||||
Output: HTML
|
||||
Grouped By: Value, Part, Footprint, Tolerance, Manufacturer, Voltage
|
||||
Grouped By: Value, Part, Footprint, Tolerance, Manufacturer, Voltage, DNP
|
||||
Sorted By: Ref
|
||||
Fields: Ref, Qnty, Value, Part, Footprint, Description, Vendor
|
||||
Fields: Ref, Qnty, Value, Part, Footprint, Description, Vendor, DNP
|
||||
|
||||
Command line:
|
||||
python "pathToFile/bom_with_advanced_grouping.py" "%I" "%O.html"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
Output: text file (tab-separated)
|
||||
Grouped By: ungrouped, one component per line
|
||||
Sorted By: Ref
|
||||
Fields: Ref, Value, Part, Footprint, Description, Vendor
|
||||
Fields: Ref, Value, Part, Footprint, Description, Vendor, DNP
|
||||
|
||||
Command line:
|
||||
python "pathToFile/bom_txt_sorted_by_ref.py" "%I" "%O.txt"
|
||||
|
|
Loading…
Reference in New Issue