Skip to content
Snippets Groups Projects
Commit e1c731f3 authored by Recolic Keghart's avatar Recolic Keghart
Browse files

bug fix

parent 8fa1dd2c
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ def _main(): ...@@ -62,7 +62,7 @@ def _main():
serial, product_id, product_name, quantity = line[0], line[1], line[2], line[3] serial, product_id, product_name, quantity = line[0], line[1], line[2], line[3]
print('[{}]Adding product {} {}({}) ...'.format(serial, quantity, product_name, product_id)) print('[{}]Adding product {} {}({}) ...'.format(serial, quantity, product_name, product_id))
add_product(serial, product_id, product_name, quantity, must_have_xlsx=config.allow_part_tree_reference) # first-level recursive is enabled. Update: controlled by config, should never switched on. add_product(serial, product_id, product_name, quantity, must_have_xlsx=True, allow_recursive_part_ref=config.allow_part_tree_reference) # first-level recursive is enabled. Update: controlled by config, should never switched on.
_magic_merge_missing_parts() _magic_merge_missing_parts()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment