Modify the layout
parent
3d5d924d56
commit
8b25860ad7
|
@ -244,6 +244,7 @@ def generate_excel(report,
|
|||
#####################################
|
||||
|
||||
has_parameters_names_and_timestamps_and_values_data = True
|
||||
current_sheet_parameters_row_number = current_row_number
|
||||
|
||||
if 'parameters' not in report.keys() or \
|
||||
report['parameters'] is None or \
|
||||
|
@ -260,6 +261,150 @@ def generate_excel(report,
|
|||
|
||||
has_parameters_names_and_timestamps_and_values_data = False
|
||||
|
||||
#####################################
|
||||
|
||||
has_values_data = True
|
||||
has_timestamps_data = True
|
||||
|
||||
if 'values' not in reporting_period_data.keys() or \
|
||||
reporting_period_data['values'] is None or \
|
||||
len(reporting_period_data['values']) == 0:
|
||||
has_values_data = False
|
||||
|
||||
if 'timestamps' not in reporting_period_data.keys() or \
|
||||
reporting_period_data['timestamps'] is None or \
|
||||
len(reporting_period_data['timestamps']) == 0 or \
|
||||
len(reporting_period_data['timestamps'][0]) == 0:
|
||||
has_timestamps_data = False
|
||||
|
||||
if has_values_data and has_timestamps_data:
|
||||
ca_len = len(reporting_period_data['names'])
|
||||
time = reporting_period_data['timestamps'][0]
|
||||
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)] = name + ' 报告期累积效率'
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
chart_start_row_number = current_row_number
|
||||
|
||||
current_row_number += ca_len * 6 + 1
|
||||
|
||||
if has_parameters_names_and_timestamps_and_values_data:
|
||||
current_sheet_parameters_row_number = current_row_number
|
||||
real_timestamps_len = timestamps_data_not_equal_0(report['parameters']['timestamps'])
|
||||
current_row_number += 6*real_timestamps_len + 2
|
||||
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)] = name + ' 详细数据'
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
table_start_row_number = current_row_number
|
||||
|
||||
ws.row_dimensions[current_row_number].height = 85
|
||||
ws['B' + str(current_row_number)].fill = table_fill
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)].alignment = c_c_alignment
|
||||
ws['B' + str(current_row_number)].border = f_border
|
||||
ws['B' + str(current_row_number)] = '日期时间'
|
||||
|
||||
col = 'C'
|
||||
|
||||
for i in range(0, ca_len):
|
||||
ws[col + str(current_row_number)].fill = table_fill
|
||||
ws[col + str(current_row_number)].font = title_font
|
||||
ws[col + str(current_row_number)].alignment = c_c_alignment
|
||||
ws[col + str(current_row_number)].border = f_border
|
||||
ws[col + str(current_row_number)] = \
|
||||
reporting_period_data['names'][i] + " (" + reporting_period_data['units'][i] + ")"
|
||||
col = chr(ord(col) + 1)
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
for i in range(0, len(time)):
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)].alignment = c_c_alignment
|
||||
ws['B' + str(current_row_number)].border = f_border
|
||||
ws['B' + str(current_row_number)] = time[i]
|
||||
|
||||
col = 'C'
|
||||
for j in range(0, ca_len):
|
||||
ws[col + str(current_row_number)].font = title_font
|
||||
ws[col + str(current_row_number)].alignment = c_c_alignment
|
||||
ws[col + str(current_row_number)].border = f_border
|
||||
ws[col + str(current_row_number)] = round(reporting_period_data['values'][j][i], 2) \
|
||||
if reporting_period_data['values'][j][i] is not None else 0.00
|
||||
col = chr(ord(col) + 1)
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
table_end_row_number = current_row_number - 1
|
||||
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)].alignment = c_c_alignment
|
||||
ws['B' + str(current_row_number)].border = f_border
|
||||
ws['B' + str(current_row_number)] = '小计'
|
||||
|
||||
col = 'C'
|
||||
|
||||
for i in range(0, ca_len):
|
||||
ws[col + str(current_row_number)].font = title_font
|
||||
ws[col + str(current_row_number)].alignment = c_c_alignment
|
||||
ws[col + str(current_row_number)].border = f_border
|
||||
ws[col + str(current_row_number)] = round(reporting_period_data['cumulations'][i], 2)
|
||||
col = chr(ord(col) + 1)
|
||||
|
||||
current_row_number += 2
|
||||
|
||||
format_time_width_number = 1.0
|
||||
min_len_number = 1.0
|
||||
min_width_number = 11.0 # format_time_width_number * min_len_number + 4 and min_width_number > 11.0
|
||||
|
||||
if period_type == 'hourly':
|
||||
format_time_width_number = 4.0
|
||||
min_len_number = 2
|
||||
min_width_number = 12.0
|
||||
elif period_type == 'daily':
|
||||
format_time_width_number = 2.5
|
||||
min_len_number = 4
|
||||
min_width_number = 14.0
|
||||
elif period_type == 'monthly':
|
||||
format_time_width_number = 2.1
|
||||
min_len_number = 4
|
||||
min_width_number = 12.4
|
||||
elif period_type == 'yearly':
|
||||
format_time_width_number = 1.5
|
||||
min_len_number = 5
|
||||
min_width_number = 11.5
|
||||
|
||||
for i in range(0, ca_len):
|
||||
line = LineChart()
|
||||
line.title = '报告期累积效率 - ' + \
|
||||
reporting_period_data['names'][i] + " (" + reporting_period_data['units'][i] + ")"
|
||||
labels = Reference(ws, min_col=2, min_row=table_start_row_number + 1, max_row=table_end_row_number)
|
||||
line_data = Reference(ws, min_col=3 + i, min_row=table_start_row_number, max_row=table_end_row_number)
|
||||
line.add_data(line_data, titles_from_data=True)
|
||||
line.set_categories(labels)
|
||||
line_data = line.series[0]
|
||||
line_data.marker.symbol = "circle"
|
||||
line_data.smooth = True
|
||||
line.x_axis.crosses = 'min'
|
||||
line.height = 8.25
|
||||
line.width = format_time_width_number * len(time) if len(time) > min_len_number else min_width_number
|
||||
if line.width > 24:
|
||||
line.width = 24
|
||||
line.dLbls = DataLabelList()
|
||||
line.dLbls.dLblPos = 't'
|
||||
line.dLbls.showVal = True
|
||||
line.dLbls.showPercent = False
|
||||
chart_col = 'B'
|
||||
chart_cell = chart_col + str(chart_start_row_number)
|
||||
chart_start_row_number += 6
|
||||
ws.add_chart(line, chart_cell)
|
||||
|
||||
#####################################################################
|
||||
|
||||
if has_parameters_names_and_timestamps_and_values_data:
|
||||
|
||||
###############################
|
||||
|
@ -378,12 +523,12 @@ def generate_excel(report,
|
|||
# parameters chart and parameters table
|
||||
########################################################
|
||||
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)] = name + ' 相关参数'
|
||||
ws['B' + str(current_sheet_parameters_row_number)].font = title_font
|
||||
ws['B' + str(current_sheet_parameters_row_number)] = name + ' 相关参数'
|
||||
|
||||
current_row_number += 1
|
||||
current_sheet_parameters_row_number += 1
|
||||
|
||||
chart_start_row_number = current_row_number
|
||||
chart_start_row_number = current_sheet_parameters_row_number
|
||||
|
||||
col_index = 0
|
||||
|
||||
|
@ -419,140 +564,9 @@ def generate_excel(report,
|
|||
chart_start_row_number += 6
|
||||
ws.add_chart(line, chart_cell)
|
||||
|
||||
current_row_number = chart_start_row_number
|
||||
current_sheet_parameters_row_number = chart_start_row_number
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
#####################################
|
||||
|
||||
has_values_data = True
|
||||
has_timestamps_data = True
|
||||
|
||||
if 'values' not in reporting_period_data.keys() or \
|
||||
reporting_period_data['values'] is None or \
|
||||
len(reporting_period_data['values']) == 0:
|
||||
has_values_data = False
|
||||
|
||||
if 'timestamps' not in reporting_period_data.keys() or \
|
||||
reporting_period_data['timestamps'] is None or \
|
||||
len(reporting_period_data['timestamps']) == 0 or \
|
||||
len(reporting_period_data['timestamps'][0]) == 0:
|
||||
has_timestamps_data = False
|
||||
|
||||
if has_values_data and has_timestamps_data:
|
||||
ca_len = len(reporting_period_data['names'])
|
||||
time = reporting_period_data['timestamps'][0]
|
||||
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)] = name + ' 详细数据'
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
chart_start_row_number = current_row_number
|
||||
|
||||
current_row_number += ca_len * 6
|
||||
table_start_row_number = current_row_number
|
||||
|
||||
ws.row_dimensions[current_row_number].height = 85
|
||||
ws['B' + str(current_row_number)].fill = table_fill
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)].alignment = c_c_alignment
|
||||
ws['B' + str(current_row_number)].border = f_border
|
||||
ws['B' + str(current_row_number)] = '日期时间'
|
||||
|
||||
col = 'C'
|
||||
|
||||
for i in range(0, ca_len):
|
||||
ws[col + str(current_row_number)].fill = table_fill
|
||||
ws[col + str(current_row_number)].font = title_font
|
||||
ws[col + str(current_row_number)].alignment = c_c_alignment
|
||||
ws[col + str(current_row_number)].border = f_border
|
||||
ws[col + str(current_row_number)] = \
|
||||
reporting_period_data['names'][i] + " (" + reporting_period_data['units'][i] + ")"
|
||||
col = chr(ord(col) + 1)
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
for i in range(0, len(time)):
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)].alignment = c_c_alignment
|
||||
ws['B' + str(current_row_number)].border = f_border
|
||||
ws['B' + str(current_row_number)] = time[i]
|
||||
|
||||
col = 'C'
|
||||
for j in range(0, ca_len):
|
||||
ws[col + str(current_row_number)].font = title_font
|
||||
ws[col + str(current_row_number)].alignment = c_c_alignment
|
||||
ws[col + str(current_row_number)].border = f_border
|
||||
ws[col + str(current_row_number)] = round(reporting_period_data['values'][j][i], 2) \
|
||||
if reporting_period_data['values'][j][i] is not None else 0.00
|
||||
col = chr(ord(col) + 1)
|
||||
|
||||
current_row_number += 1
|
||||
|
||||
table_end_row_number = current_row_number - 1
|
||||
|
||||
ws['B' + str(current_row_number)].font = title_font
|
||||
ws['B' + str(current_row_number)].alignment = c_c_alignment
|
||||
ws['B' + str(current_row_number)].border = f_border
|
||||
ws['B' + str(current_row_number)] = '小计'
|
||||
|
||||
col = 'C'
|
||||
|
||||
for i in range(0, ca_len):
|
||||
ws[col + str(current_row_number)].font = title_font
|
||||
ws[col + str(current_row_number)].alignment = c_c_alignment
|
||||
ws[col + str(current_row_number)].border = f_border
|
||||
ws[col + str(current_row_number)] = round(reporting_period_data['cumulations'][i], 2)
|
||||
col = chr(ord(col) + 1)
|
||||
|
||||
current_row_number += 2
|
||||
|
||||
format_time_width_number = 1.0
|
||||
min_len_number = 1.0
|
||||
min_width_number = 11.0 # format_time_width_number * min_len_number + 4 and min_width_number > 11.0
|
||||
|
||||
if period_type == 'hourly':
|
||||
format_time_width_number = 4.0
|
||||
min_len_number = 2
|
||||
min_width_number = 12.0
|
||||
elif period_type == 'daily':
|
||||
format_time_width_number = 2.5
|
||||
min_len_number = 4
|
||||
min_width_number = 14.0
|
||||
elif period_type == 'monthly':
|
||||
format_time_width_number = 2.1
|
||||
min_len_number = 4
|
||||
min_width_number = 12.4
|
||||
elif period_type == 'yearly':
|
||||
format_time_width_number = 1.5
|
||||
min_len_number = 5
|
||||
min_width_number = 11.5
|
||||
|
||||
for i in range(0, ca_len):
|
||||
line = LineChart()
|
||||
line.title = '报告期累积效率 - ' + \
|
||||
reporting_period_data['names'][i] + " (" + reporting_period_data['units'][i] + ")"
|
||||
labels = Reference(ws, min_col=2, min_row=table_start_row_number + 1, max_row=table_end_row_number)
|
||||
line_data = Reference(ws, min_col=3 + i, min_row=table_start_row_number, max_row=table_end_row_number)
|
||||
line.add_data(line_data, titles_from_data=True)
|
||||
line.set_categories(labels)
|
||||
line_data = line.series[0]
|
||||
line_data.marker.symbol = "circle"
|
||||
line_data.smooth = True
|
||||
line.x_axis.crosses = 'min'
|
||||
line.height = 8.25
|
||||
line.width = format_time_width_number * len(time) if len(time) > min_len_number else min_width_number
|
||||
if line.width > 24:
|
||||
line.width = 24
|
||||
line.dLbls = DataLabelList()
|
||||
line.dLbls.dLblPos = 't'
|
||||
line.dLbls.showVal = True
|
||||
line.dLbls.showPercent = False
|
||||
chart_col = 'B'
|
||||
chart_cell = chart_col + str(chart_start_row_number)
|
||||
chart_start_row_number += 6
|
||||
ws.add_chart(line, chart_cell)
|
||||
current_sheet_parameters_row_number += 1
|
||||
|
||||
filename = str(uuid.uuid4()) + '.xlsx'
|
||||
wb.save(filename)
|
||||
|
@ -575,3 +589,11 @@ def timestamps_data_all_equal_0(lists):
|
|||
return False
|
||||
|
||||
return True
|
||||
|
||||
|
||||
def timestamps_data_not_equal_0(lists):
|
||||
number = 0
|
||||
for i, value in enumerate(list(lists)):
|
||||
if len(value) > 0:
|
||||
number += 1
|
||||
return number
|
||||
|
|
Loading…
Reference in New Issue