diff --git a/etl/customers/stonewater/Wave 3 Preparation.py b/etl/customers/stonewater/Wave 3 Preparation.py index 62cec009..988a544a 100644 --- a/etl/customers/stonewater/Wave 3 Preparation.py +++ b/etl/customers/stonewater/Wave 3 Preparation.py @@ -165,7 +165,7 @@ def detect_and_parse_report(pdf_path, pdf_file): if is_energy_report(first_page_text): # Treat this as an Energy Report return extract_epr(pdf_path) - elif "summary" in pdf_file.lower(): + elif "summary" in pdf_file.lower() or is_summary_report(first_page_text): # Treat this as a Summary Report return extract_summary_report(pdf_path) elif is_condition_report(first_page_text):