From 4c0502c17c8ef6b4858528a0f97774a8a47e7a0c Mon Sep 17 00:00:00 2001 From: Recolic Keghart <root@recolic.net> Date: Fri, 14 Feb 2020 20:39:28 -0800 Subject: [PATCH] bug fix --- summerize-part-list/main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/summerize-part-list/main.py b/summerize-part-list/main.py index db40e65..06ac276 100755 --- a/summerize-part-list/main.py +++ b/summerize-part-list/main.py @@ -163,8 +163,8 @@ def add_product(serial, _id, name, quantity, must_have_xlsx=False, allow_recursi if part_id.startswith(_id): log_warn('Self-reference detected on part {}. Skipping recursive walking.'.format(_id)) else: - add_product(serial, part_id, part_name, stoi(quantity)*stoi(line_ar[config.part_quantity_col_index]), allow_recursive_part_ref=config.allow_part_tree_reference) - continue # DO not put the parent material into csv_buf again! + if add_product(serial, part_id, part_name, stoi(quantity)*stoi(line_ar[config.part_quantity_col_index]), allow_recursive_part_ref=config.allow_part_tree_reference): # If found sub-part xlsx: + continue # DO not put the parent material into csv_buf again! # put line into csv_buf csv_preprocess.npmat2csv(line, csv_buf) else: @@ -172,7 +172,8 @@ def add_product(serial, _id, name, quantity, must_have_xlsx=False, allow_recursi name_and_id = '{}({})'.format(name, _id) log_error('Error: Unable to find xls for {} (xls/xlsm/xlsx)'.format(name_and_id)) missing_parts.append('{},{},{}'.format(_id, name, 'å°‘ææ–™')) - print('ADD_PRODUCT END.') + print('ADD_PRODUCT END. found_xlsx =', found_xlsx) + return found_xlsx def _magic_merge_missing_parts(): global missing_parts -- GitLab