prop_search

This commit is contained in:
Christophe SEUX
2023-04-23 13:07:33 +02:00
parent 5c35bae0e3
commit a7afedd49b
3 changed files with 33 additions and 15 deletions
+5 -1
View File
@@ -631,7 +631,11 @@ class VSETB_OT_load_projects(Operator):
metadata_type = project.metadata_types.add()
metadata_type.name = metadata_data['name']
metadata_type.field_name = metadata_data['field_name']
metadata_type['choices'] = metadata_data['choices']
#metadata_type['choices'] = metadata_data['choices']
for choice in metadata_data['choices']:
choice_item = metadata_type.choices.add()
choice_item.name = choice
metadata_type['entity_type'] = metadata_data['entity_type'].upper()
for status_data in tracker.get_task_statuses(project_data):