From 6cd7903555c78fe8e71a440e7eea5052233a6b74 Mon Sep 17 00:00:00 2001 From: Joe Arriaga Date: Sat, 2 Mar 2019 20:37:38 -0800 Subject: [PATCH] Added economy class check to policy.py file. --- back/backend/policy.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/back/backend/policy.py b/back/backend/policy.py index 41f8b73..b143304 100644 --- a/back/backend/policy.py +++ b/back/backend/policy.py @@ -97,6 +97,7 @@ planning_section = Section( "preferred_flight_fare": {"number": 6, "label": "Fare of your preferred flight", "field_type": "decimal"}, "preferred_flight_duration": {"number": 7, "label": "Flight duration of your preferred flight (hours)", "field_type": "decimal"}, "international_flight": {"number": 8, "label": "Is this an international flight?", "field_type": "boolean"}, + "economy_class": {"number": 9, "label": "Is your ticket in economy/coach?", "field_type": "boolea n"}, } ) @@ -142,6 +143,12 @@ def departure_date_limit_rule(report, fields): return None planning_section.add_rule(title="Departure date limit", rule=departure_date_limit_rule) + +def economy_class_rule(report, fields): + if not economy_class: + return "Only economy or coach class tickets are within policy." + +planning_section.add_rule(title="Economy class check", rule=economy_class_rule) pol.add_section(planning_section) #### Flight Info