diff --git a/backend/addresses/Addresses.py b/backend/addresses/Addresses.py index 4c046554..44083b86 100644 --- a/backend/addresses/Addresses.py +++ b/backend/addresses/Addresses.py @@ -110,6 +110,8 @@ class Addresses: landlord_multi_glaze_proportion=float(row["landlord_multi_glaze_proportion"]) if row.get( "landlord_multi_glaze_proportion") else None, landlord_construction_age_band=row.get("landlord_construction_age_band"), + lmk_key=None, + epc_certificate_number=None, ) @staticmethod diff --git a/backend/export/tests/test_export.py b/backend/export/tests/test_export.py index 381047a8..7e7ac786 100644 --- a/backend/export/tests/test_export.py +++ b/backend/export/tests/test_export.py @@ -561,6 +561,8 @@ def test_solar_with_battery_example(db_session): creation_status=PropertyCreationStatus[row.creation_status.split(".")[-1]], status=PortfolioStatus[row.status.split(".")[-1]], uprn=row.uprn, + address=row.address, + postcode=row.postcode, property_type=row.property_type, current_sap_points=row.current_sap_points, current_epc_rating=Epc[row.current_epc_rating.split(".")[-1]],