340 lines
13 KiB
Python
340 lines
13 KiB
Python
import base64
|
|
import uuid
|
|
import os
|
|
from openpyxl.chart import LineChart, Reference, Series
|
|
from openpyxl.styles import PatternFill, Border, Side, Alignment, Font
|
|
from openpyxl.drawing.image import Image
|
|
from openpyxl import Workbook
|
|
from openpyxl.chart.label import DataLabelList
|
|
|
|
|
|
########################################################################################################################
|
|
# PROCEDURES
|
|
# Step 1: Validate the report data
|
|
# Step 2: Generate excelexporters file
|
|
# Step 3: Encode the excelexporters file to Base64
|
|
########################################################################################################################
|
|
|
|
def export(report, name, reporting_start_datetime_local, reporting_end_datetime_local, period_type):
|
|
####################################################################################################################
|
|
# Step 1: Validate the report data
|
|
####################################################################################################################
|
|
if report is None:
|
|
return None
|
|
|
|
if "reporting_period" not in report.keys() or \
|
|
"values" not in report['reporting_period'].keys() or len(report['reporting_period']['values']) == 0:
|
|
return None
|
|
####################################################################################################################
|
|
# Step 2: Generate excel file from the report data
|
|
####################################################################################################################
|
|
filename = generate_excel(report,
|
|
name,
|
|
reporting_start_datetime_local,
|
|
reporting_end_datetime_local,
|
|
period_type)
|
|
####################################################################################################################
|
|
# Step 3: Encode the excel file to Base64
|
|
####################################################################################################################
|
|
binary_file_data = b''
|
|
try:
|
|
with open(filename, 'rb') as binary_file:
|
|
binary_file_data = binary_file.read()
|
|
except IOError as ex:
|
|
pass
|
|
|
|
# Base64 encode the bytes
|
|
base64_encoded_data = base64.b64encode(binary_file_data)
|
|
# get the Base64 encoded data using human-readable characters.
|
|
base64_message = base64_encoded_data.decode('utf-8')
|
|
# delete the file from server
|
|
try:
|
|
os.remove(filename)
|
|
except NotImplementedError as ex:
|
|
pass
|
|
return base64_message
|
|
|
|
|
|
def generate_excel(report, name, reporting_start_datetime_local, reporting_end_datetime_local, period_type):
|
|
wb = Workbook()
|
|
|
|
ws = wb.active
|
|
ws.title = "VirtualMeterCost"
|
|
# Row height
|
|
ws.row_dimensions[1].height = 102
|
|
for i in range(2, 2000 + 1):
|
|
ws.row_dimensions[i].height = 42
|
|
|
|
# Col width
|
|
ws.column_dimensions['A'].width = 1.5
|
|
|
|
ws.column_dimensions['B'].width = 25.0
|
|
|
|
for i in range(ord('C'), ord('L')):
|
|
ws.column_dimensions[chr(i)].width = 15.0
|
|
|
|
# Font
|
|
name_font = Font(name='Arial', size=15, bold=True)
|
|
title_font = Font(name='Arial', size=15, bold=True)
|
|
|
|
table_fill = PatternFill(fill_type='solid', fgColor='1F497D')
|
|
f_border = Border(left=Side(border_style='medium', color='00000000'),
|
|
right=Side(border_style='medium', color='00000000'),
|
|
bottom=Side(border_style='medium', color='00000000'),
|
|
top=Side(border_style='medium', color='00000000')
|
|
)
|
|
b_border = Border(
|
|
bottom=Side(border_style='medium', color='00000000'),
|
|
)
|
|
|
|
b_c_alignment = Alignment(vertical='bottom',
|
|
horizontal='center',
|
|
text_rotation=0,
|
|
wrap_text=True,
|
|
shrink_to_fit=False,
|
|
indent=0)
|
|
c_c_alignment = Alignment(vertical='center',
|
|
horizontal='center',
|
|
text_rotation=0,
|
|
wrap_text=True,
|
|
shrink_to_fit=False,
|
|
indent=0)
|
|
b_r_alignment = Alignment(vertical='bottom',
|
|
horizontal='right',
|
|
text_rotation=0,
|
|
wrap_text=True,
|
|
shrink_to_fit=False,
|
|
indent=0)
|
|
|
|
# Img
|
|
img = Image("excelexporters/myems.png")
|
|
ws.add_image(img, 'A1')
|
|
|
|
# Title
|
|
ws['B3'].alignment = b_r_alignment
|
|
ws['B3'] = 'Name:'
|
|
ws['C3'].border = b_border
|
|
ws['C3'].alignment = b_c_alignment
|
|
ws['C3'] = name
|
|
|
|
ws['D3'].alignment = b_r_alignment
|
|
ws['D3'] = 'Period:'
|
|
ws['E3'].border = b_border
|
|
ws['E3'].alignment = b_c_alignment
|
|
ws['E3'] = period_type
|
|
|
|
ws['B4'].alignment = b_r_alignment
|
|
ws['B4'] = 'Reporting Start Datetime:'
|
|
ws['C4'].border = b_border
|
|
ws['C4'].alignment = b_c_alignment
|
|
ws['C4'] = reporting_start_datetime_local
|
|
|
|
ws['D4'].alignment = b_r_alignment
|
|
ws['D4'] = 'Reporting End Datetime:'
|
|
ws['E4'].border = b_border
|
|
ws['E4'].alignment = b_c_alignment
|
|
ws['E4'] = reporting_end_datetime_local
|
|
|
|
if "reporting_period" not in report.keys() or \
|
|
"values" not in report['reporting_period'].keys() or len(report['reporting_period']['values']) == 0:
|
|
filename = str(uuid.uuid4()) + '.xlsx'
|
|
wb.save(filename)
|
|
|
|
return filename
|
|
|
|
####################################################################################################################
|
|
|
|
has_cost_data_flag = True
|
|
|
|
if "values" not in report['reporting_period'].keys() or len(report['reporting_period']['values']) == 0:
|
|
has_cost_data_flag = False
|
|
|
|
if has_cost_data_flag:
|
|
ws['B6'].font = title_font
|
|
ws['B6'] = name + 'Reporting Period Costs'
|
|
|
|
reporting_period_data = report['reporting_period']
|
|
category = report['virtual_meter']['energy_category_name']
|
|
ca_len = len(category)
|
|
|
|
ws.row_dimensions[7].height = 60
|
|
ws['B7'].fill = table_fill
|
|
ws['B7'].border = f_border
|
|
|
|
ws['B8'].font = title_font
|
|
ws['B8'].alignment = c_c_alignment
|
|
ws['B8'] = 'Cost'
|
|
ws['B8'].border = f_border
|
|
|
|
ws['B9'].font = title_font
|
|
ws['B9'].alignment = c_c_alignment
|
|
ws['B9'] = 'Increment Rate'
|
|
ws['B9'].border = f_border
|
|
|
|
col = 'B'
|
|
|
|
for i in range(0, ca_len):
|
|
col = chr(ord('C') + i)
|
|
|
|
ws[col + '7'].fill = table_fill
|
|
ws[col + '7'].font = name_font
|
|
ws[col + '7'].alignment = c_c_alignment
|
|
ws[col + '7'] = report['virtual_meter']['energy_category_name'] + \
|
|
" (" + report['virtual_meter']['unit_of_measure'] + ")"
|
|
ws[col + '7'].border = f_border
|
|
|
|
ws[col + '8'].font = name_font
|
|
ws[col + '8'].alignment = c_c_alignment
|
|
ws[col + '8'] = round(reporting_period_data['total_in_category'], 2)
|
|
ws[col + '8'].border = f_border
|
|
|
|
ws[col + '9'].font = name_font
|
|
ws[col + '9'].alignment = c_c_alignment
|
|
ws[col + '9'] = str(round(reporting_period_data['increment_rate'] * 100, 2)) + "%" \
|
|
if reporting_period_data['increment_rate'] is not None else "-"
|
|
ws[col + '9'].border = f_border
|
|
|
|
# TCE TCO2E
|
|
end_col = col
|
|
# TCE
|
|
tce_col = chr(ord(end_col) + 1)
|
|
ws[tce_col + '7'].fill = table_fill
|
|
ws[tce_col + '7'].font = name_font
|
|
ws[tce_col + '7'].alignment = c_c_alignment
|
|
ws[tce_col + '7'] = 'Ton of Standard Coal (TCE)'
|
|
ws[tce_col + '7'].border = f_border
|
|
|
|
ws[tce_col + '8'].font = name_font
|
|
ws[tce_col + '8'].alignment = c_c_alignment
|
|
ws[tce_col + '8'] = round(reporting_period_data['total_in_kgce'] / 1000, 2)
|
|
ws[tce_col + '8'].border = f_border
|
|
|
|
ws[tce_col + '9'].font = name_font
|
|
ws[tce_col + '9'].alignment = c_c_alignment
|
|
ws[tce_col + '9'] = str(round(reporting_period_data['increment_rate'] * 100, 2)) + "%" \
|
|
if reporting_period_data['increment_rate'] is not None else "-"
|
|
ws[tce_col + '9'].border = f_border
|
|
|
|
# TCO2E
|
|
tco2e_col = chr(ord(end_col) + 2)
|
|
ws[tco2e_col + '7'].fill = table_fill
|
|
ws[tco2e_col + '7'].font = name_font
|
|
ws[tco2e_col + '7'].alignment = c_c_alignment
|
|
ws[tco2e_col + '7'] = 'Ton of Carbon Dioxide Emissions (TCO2E)'
|
|
ws[tco2e_col + '7'].border = f_border
|
|
|
|
ws[tco2e_col + '8'].font = name_font
|
|
ws[tco2e_col + '8'].alignment = c_c_alignment
|
|
ws[tco2e_col + '8'] = round(reporting_period_data['total_in_kgco2e'] / 1000, 2)
|
|
ws[tco2e_col + '8'].border = f_border
|
|
|
|
ws[tco2e_col + '9'].font = name_font
|
|
ws[tco2e_col + '9'].alignment = c_c_alignment
|
|
ws[tco2e_col + '9'] = str(round(reporting_period_data['increment_rate'] * 100, 2)) + "%" \
|
|
if reporting_period_data['increment_rate'] is not None else "-"
|
|
ws[tco2e_col + '9'].border = f_border
|
|
|
|
else:
|
|
for i in range(6, 9 + 1):
|
|
ws.rows_dimensions[i].height = 0.1
|
|
|
|
####################################################################################################################
|
|
|
|
has_cost_detail_flag = True
|
|
reporting_period_data = report['reporting_period']
|
|
category = report['virtual_meter']['energy_category_name']
|
|
ca_len = len(category)
|
|
times = reporting_period_data['timestamps']
|
|
|
|
if "values" not in reporting_period_data.keys() or len(reporting_period_data['values']) == 0:
|
|
has_cost_detail_flag = False
|
|
|
|
if has_cost_detail_flag:
|
|
ws['B11'].font = title_font
|
|
ws['B11'] = name + 'Detailed Data'
|
|
|
|
ws.row_dimensions[18].height = 60
|
|
ws['B18'].fill = table_fill
|
|
ws['B18'].font = title_font
|
|
ws['B18'].border = f_border
|
|
ws['B18'].alignment = c_c_alignment
|
|
ws['B18'] = 'Datetime'
|
|
time = times
|
|
has_data = False
|
|
max_row = 0
|
|
if len(time) > 0:
|
|
has_data = True
|
|
max_row = 18 + len(time)
|
|
|
|
if has_data:
|
|
|
|
end_data_row_number = 19
|
|
|
|
for i in range(0, len(time)):
|
|
col = 'B'
|
|
end_data_row_number = 19 + i
|
|
row = str(end_data_row_number)
|
|
|
|
ws[col + row].font = title_font
|
|
ws[col + row].alignment = c_c_alignment
|
|
ws[col + row] = time[i]
|
|
ws[col + row].border = f_border
|
|
|
|
ws['B' + str(end_data_row_number + 1)].font = title_font
|
|
ws['B' + str(end_data_row_number + 1)].alignment = c_c_alignment
|
|
ws['B' + str(end_data_row_number + 1)] = 'Total'
|
|
ws['B' + str(end_data_row_number + 1)].border = f_border
|
|
|
|
for i in range(0, ca_len):
|
|
|
|
col = chr(ord('C') + i)
|
|
|
|
ws[col + '18'].fill = table_fill
|
|
ws[col + '18'].font = title_font
|
|
ws[col + '18'].alignment = c_c_alignment
|
|
ws[col + '18'] = report['virtual_meter']['energy_category_name'] + \
|
|
" (" + report['virtual_meter']['unit_of_measure'] + ")"
|
|
ws[col + '18'].border = f_border
|
|
|
|
time = times
|
|
time_len = len(time)
|
|
|
|
for j in range(0, time_len):
|
|
row = str(19 + j)
|
|
|
|
ws[col + row].font = title_font
|
|
ws[col + row].alignment = c_c_alignment
|
|
ws[col + row] = round(reporting_period_data['values'][j], 2)
|
|
ws[col + row].border = f_border
|
|
|
|
ws[col + str(end_data_row_number + 1)].font = title_font
|
|
ws[col + str(end_data_row_number + 1)].alignment = c_c_alignment
|
|
ws[col + str(end_data_row_number + 1)] = round(reporting_period_data['total_in_category'], 2)
|
|
ws[col + str(end_data_row_number + 1)].border = f_border
|
|
|
|
line = LineChart()
|
|
labels = Reference(ws, min_col=2, min_row=19, max_row=max_row)
|
|
line_data = Reference(ws, min_col=3, min_row=18, max_row=max_row)
|
|
line.series.append(Series(line_data, title_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.title = 'Reporting Period Costs - ' + report['virtual_meter']['energy_category_name'] + \
|
|
" (" + report['virtual_meter']['unit_of_measure'] + ")"
|
|
line.dLbls = DataLabelList()
|
|
line.dLbls.dLblPos = 't'
|
|
line.dLbls.showVal = True
|
|
line.height = 8.25
|
|
line.width = 24
|
|
ws.add_chart(line, "B12")
|
|
else:
|
|
for i in range(11, 43 + 1):
|
|
ws.row_dimensions[i].height = 0.0
|
|
|
|
filename = str(uuid.uuid4()) + '.xlsx'
|
|
wb.save(filename)
|
|
|
|
return filename
|