update manufacturer structure to include notice field

This commit is contained in:
Brandon Egger 2023-05-09 23:19:30 -05:00
parent fb340daf38
commit 81b03547c7
4 changed files with 8 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@ -26,6 +26,4 @@ poetry run python import/main.py ../data/atr_data.xlsx
You should see output showing the individual objects it extracted from your excel sheet along with a success message at the end.
# Expected Data Format
***TODO:*** Outline expected data format for the utility.
See atr_data.xlsx
See {project_root}/data/atr_data.xlsx

View File

@ -29,11 +29,17 @@ def get_manufacturer(row, col):
return None
required = row.loc[col]['required']
return {
manufacturer_info = {
"name": row.loc[col]['entry'],
"required": isinstance(required, str)
}
if isinstance(row.loc[col]['notice'], str) and len(row.loc[col]['notice'].strip()) > 0:
manufacturer_info["notice"] = row.loc[col]['notice']
return manufacturer_info
def get_selected_options(row, col):
return row.loc[col].dropna(inplace=False).index.to_list()