diff --git a/src/services/estimation_service_v2.py b/src/services/estimation_service_v2.py index 622999d..72f51db 100644 --- a/src/services/estimation_service_v2.py +++ b/src/services/estimation_service_v2.py @@ -250,6 +250,10 @@ class EstimationService: applicant_tier = tier break + if applicant_age >= 65: + is_dtq = True + reason = "Age is over 65" + if (applicant.heightFt, applicant.heightIn) in HEIGHT_WEIGHT_TABLE: weight_min, weight_max = HEIGHT_WEIGHT_TABLE[(applicant.heightFt, applicant.heightIn)] if applicant.weight < weight_min: