adding control column

This commit is contained in:
frankknoll
2023-01-25 11:13:50 +01:00
parent b9c7b2789d
commit 7ef46c8ee3
26 changed files with 99 additions and 305 deletions

View File

@@ -17,7 +17,7 @@ class IOUtils:
@staticmethod
def saveDataFrameAsHtml(dataFrame, file):
IOUtils.ensurePath(file)
dataFrame.reset_index().to_html(
dataFrame.to_html(
file + '.html',
index = False,
table_id = 'batchCodeTable',
@@ -28,7 +28,7 @@ class IOUtils:
@staticmethod
def saveDataFrameAsJson(dataFrame, file):
IOUtils.ensurePath(file)
dataFrame.reset_index().to_json(
dataFrame.to_json(
file + '.json',
orient = "split",
index = False)