diff --git a/eeschema/plugins/python_scripts/bom_csv_grouped_by_value.py b/eeschema/plugins/python_scripts/bom_csv_grouped_by_value.py index 3a47af0c2f..131875111a 100644 --- a/eeschema/plugins/python_scripts/bom_csv_grouped_by_value.py +++ b/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. diff --git a/eeschema/plugins/python_scripts/bom_csv_grouped_by_value_with_fp.py b/eeschema/plugins/python_scripts/bom_csv_grouped_by_value_with_fp.py index 12d99585d0..9d902377b4 100644 --- a/eeschema/plugins/python_scripts/bom_csv_grouped_by_value_with_fp.py +++ b/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" diff --git a/eeschema/plugins/python_scripts/bom_csv_grouped_extra.py b/eeschema/plugins/python_scripts/bom_csv_grouped_extra.py index 5515b0b6fa..b04f4576fb 100644 --- a/eeschema/plugins/python_scripts/bom_csv_grouped_extra.py +++ b/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. diff --git a/eeschema/plugins/python_scripts/bom_csv_sorted_by_ref.py b/eeschema/plugins/python_scripts/bom_csv_sorted_by_ref.py index 007d372a88..62a002eb41 100644 --- a/eeschema/plugins/python_scripts/bom_csv_sorted_by_ref.py +++ b/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" diff --git a/eeschema/plugins/python_scripts/bom_html_grouped_by_value.py b/eeschema/plugins/python_scripts/bom_html_grouped_by_value.py index c7828bf81c..ad5cfef372 100644 --- a/eeschema/plugins/python_scripts/bom_html_grouped_by_value.py +++ b/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" diff --git a/eeschema/plugins/python_scripts/bom_html_with_advanced_grouping.py b/eeschema/plugins/python_scripts/bom_html_with_advanced_grouping.py index e1dbd66188..20344417f5 100644 --- a/eeschema/plugins/python_scripts/bom_html_with_advanced_grouping.py +++ b/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" diff --git a/eeschema/plugins/python_scripts/bom_txt_sorted_by_ref.py b/eeschema/plugins/python_scripts/bom_txt_sorted_by_ref.py index 00322e7642..ae4c4049eb 100644 --- a/eeschema/plugins/python_scripts/bom_txt_sorted_by_ref.py +++ b/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"