sap score

This commit is contained in:
Jun-te Kim 2025-03-21 18:31:15 +00:00
parent 331b6e5fbb
commit 6a6f339fb3
3 changed files with 11 additions and 2 deletions

View file

@ -302,6 +302,7 @@ def main():
"Surveyor's Name": [],
"Type of Work": [],
"Price": [],
"Pre SAP": [],
"Total Floor Area": [],
"Empty/Cavity": [],
}
@ -321,6 +322,7 @@ def main():
data["Surveyor's Name"].append(survey.pre_site_note.assessor_information.name)
data["Type of Work"].append("Caluclating...")
data["Price"].append("Caluclating...")
data["Pre SAP"].append(survey.pre_site_note.survey_information.current_sap)
data["Total Floor Area"].append(total_floor_area)
data["Empty/Cavity"].append("None")
@ -345,4 +347,9 @@ def main():
if __name__ == "__main__":
main()
# TO DO compare floor area with deemed one
# TO DO compare floor area with deemed one
# get metics the can be automated from 6 variables sheet
# Ventilation requirements?
# make a csv that is made by submission table so i can process lewis sheet quickly
# Start load process

View file

@ -1,5 +1,5 @@
from etl.pdfReader.reportType import ReportType
from transform.types import (
from etl.transform.types import (
CompanyInfo, SurverySummaryInfo, AssessorInfo,
PropertyDescription, PropertyDetail, Dimension,
Walls, Roofs, Floors, Door, VentilationAndCooling,

2
jjc_invoice.sh Normal file
View file

@ -0,0 +1,2 @@
# Example of how to run python code in this environment
poetry run python etl/jjc_invoice.py