diff --git a/app/models/journeys/further_education_payments/session_answers.rb b/app/models/journeys/further_education_payments/session_answers.rb index 7872238c73..be28bfc415 100644 --- a/app/models/journeys/further_education_payments/session_answers.rb +++ b/app/models/journeys/further_education_payments/session_answers.rb @@ -51,6 +51,10 @@ def teaching_less_than_2_5_hours_per_week_next_term? def subject_to_problematic_actions? subject_to_formal_performance_action || subject_to_disciplinary_action end + + def lacks_teacher_qualification_or_enrolment? + teaching_qualification == "no_not_planned" + end end end end diff --git a/app/models/policies/further_education_payments/policy_eligibility_checker.rb b/app/models/policies/further_education_payments/policy_eligibility_checker.rb index 654d09981d..365f8e96ec 100644 --- a/app/models/policies/further_education_payments/policy_eligibility_checker.rb +++ b/app/models/policies/further_education_payments/policy_eligibility_checker.rb @@ -32,6 +32,8 @@ def ineligibility_reason :teaching_less_than_2_5_next_term elsif answers.subject_to_problematic_actions? :subject_to_problematic_actions + elsif answers.lacks_teacher_qualification_or_enrolment? + :lacks_teacher_qualification_or_enrolment end end end diff --git a/app/views/further_education_payments/claims/_ineligible_lacks_teacher_qualification_or_enrolment.html.erb b/app/views/further_education_payments/claims/_ineligible_lacks_teacher_qualification_or_enrolment.html.erb new file mode 100644 index 0000000000..f438d23af1 --- /dev/null +++ b/app/views/further_education_payments/claims/_ineligible_lacks_teacher_qualification_or_enrolment.html.erb @@ -0,0 +1,25 @@ +
+ In order to claim an incentive payment, you must: +
+ + <%= govuk_list [ + "have a teaching qualification", + "be enrolled on a teaching qualification and working towards completing it", + "plan to enrol on a teaching qualification in the next 12 months" + ], type: :bullet %> + ++ For more information, check the eligibility criteria for <%= govuk_link_to "levelling up premium payments for early career further education teachers", "https://www.gov.uk/guidance/levelling-up-premium-payments-for-fe-teachers", new_tab: true %>. +
+ ++ The information entered is not stored. If you are unsure your information is correct, <%= govuk_link_to "start again", claim_path(current_journey_routing_name, "landing-page") %>. +
+