Browse Source

Add DNP columns/grouping info to BOM script headers

7.0
Graham Keeth 3 years ago
committed by Seth Hillbrand
parent
commit
89a6e55e58
  1. 4
      eeschema/plugins/python_scripts/bom_csv_grouped_by_value.py
  2. 4
      eeschema/plugins/python_scripts/bom_csv_grouped_by_value_with_fp.py
  3. 6
      eeschema/plugins/python_scripts/bom_csv_grouped_extra.py
  4. 2
      eeschema/plugins/python_scripts/bom_csv_sorted_by_ref.py
  5. 4
      eeschema/plugins/python_scripts/bom_html_grouped_by_value.py
  6. 4
      eeschema/plugins/python_scripts/bom_html_with_advanced_grouping.py
  7. 2
      eeschema/plugins/python_scripts/bom_txt_sorted_by_ref.py

4
eeschema/plugins/python_scripts/bom_csv_grouped_by_value.py

@ -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.

4
eeschema/plugins/python_scripts/bom_csv_grouped_by_value_with_fp.py

@ -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"

6
eeschema/plugins/python_scripts/bom_csv_grouped_extra.py

@ -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.

2
eeschema/plugins/python_scripts/bom_csv_sorted_by_ref.py

@ -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"

4
eeschema/plugins/python_scripts/bom_html_grouped_by_value.py

@ -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"

4
eeschema/plugins/python_scripts/bom_html_with_advanced_grouping.py

@ -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"

2
eeschema/plugins/python_scripts/bom_txt_sorted_by_ref.py

@ -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…
Cancel
Save