mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-30 13:10:56 +00:00
sap score
This commit is contained in:
parent
331b6e5fbb
commit
6a6f339fb3
3 changed files with 11 additions and 2 deletions
|
|
@ -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
|
||||
|
|
@ -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
2
jjc_invoice.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Example of how to run python code in this environment
|
||||
poetry run python etl/jjc_invoice.py
|
||||
Loading…
Add table
Reference in a new issue