From 658a30adcc4e1449fbb7eb776d1d4cff1d1fce3f Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Wed, 14 Sep 2022 12:19:39 +0200 Subject: [PATCH] new skipped status --- etl/planning_data/load_into_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etl/planning_data/load_into_database.py b/etl/planning_data/load_into_database.py index 7b153103..a404e2ab 100644 --- a/etl/planning_data/load_into_database.py +++ b/etl/planning_data/load_into_database.py @@ -54,7 +54,7 @@ def main(): last_synced_date = parse_date_string_into_datestring(entry['_source']['last_synced']) uprn = entry['_source']['uprn'] status = entry['_source']['status'] - if status in ["No Objection to Proposal (OBS only)", "Not Required", None, "Lapsed", "SECS", "Comment Issued"]: + if status in ["No Objection to Proposal (OBS only)", "Not Required", None, "Lapsed", "SECS", "Comment Issued", "ALL DECISIONS ISSUED"]: continue if status in []: opts = jsbeautifier.default_options()