Merge branch 'dev' into ZBKADM-72-minor-changes

This commit is contained in:
abutalib-kiwi
2023-08-21 14:31:11 +05:30
9 changed files with 146 additions and 64 deletions

View File

@ -222,6 +222,12 @@ class AnalyticsViewSet(GenericViewSet):
def write_excel_worksheet(worksheet, dataframe):
"""
to perform write action on worksheets
:param worksheet:
:param dataframe:
:return: worksheet
"""
for idx, col in enumerate(dataframe.columns):
# Write header
worksheet.write(0, idx, col)