Skip to content
Snippets Groups Projects

Filling XLSX: Everything except multiple choice.

Merged Daniel Hornung requested to merge f-json-table into dev
All threads resolved!
Compare and Show latest version
2 files
+ 10
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -308,8 +308,13 @@ out: union[dict, None]
# collecting the data
assert isinstance(content, list)
content = [str(x) for x in content]
value = ";".join(content) # TODO we need escaping of values
if len(content) > 1:
content = [ILLEGAL_CHARACTERS_RE.sub("", str(x)) for x in content]
value = ";".join(content) # TODO we need escaping of values
else:
value = content[0]
if isinstance(value, str):
value = ILLEGAL_CHARACTERS_RE.sub("", value)
path_str = p2s(path)
assert path_str not in insertables
insertables[path_str] = value
@@ -333,8 +338,7 @@ out: union[dict, None]
if insert_row is None:
insert_row = _next_row_index(sheet)
sheet.cell(row=insert_row+1, column=col_index+1,
value=ILLEGAL_CHARACTERS_RE.sub("", value))
sheet.cell(row=insert_row+1, column=col_index+1, value=value)
# Insert foreign keys
if insert_row is not None and sheet is not None and _is_exploded_sheet(sheet):
@@ -345,8 +349,7 @@ out: union[dict, None]
raise
for index, path in ((f.index, f.path) for f in foreigns.values()):
value = context[path]
sheet.cell(row=insert_row+1, column=index+1,
value=ILLEGAL_CHARACTERS_RE.sub("", value))
sheet.cell(row=insert_row+1, column=index+1, value=value)
return None
Loading