diff --git a/app/models/journeys/further_education_payments/session_answers.rb b/app/models/journeys/further_education_payments/session_answers.rb index be28bfc415..c393cdcf69 100644 --- a/app/models/journeys/further_education_payments/session_answers.rb +++ b/app/models/journeys/further_education_payments/session_answers.rb @@ -55,6 +55,10 @@ def subject_to_problematic_actions? def lacks_teacher_qualification_or_enrolment? teaching_qualification == "no_not_planned" end + + def less_than_half_hours_teaching_fe? + half_teaching_hours == false + 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 365f8e96ec..c9855e9b43 100644 --- a/app/models/policies/further_education_payments/policy_eligibility_checker.rb +++ b/app/models/policies/further_education_payments/policy_eligibility_checker.rb @@ -34,6 +34,8 @@ def ineligibility_reason :subject_to_problematic_actions elsif answers.lacks_teacher_qualification_or_enrolment? :lacks_teacher_qualification_or_enrolment + elsif answers.less_than_half_hours_teaching_fe? + :must_at_least_half_hours_teaching_fe end end end diff --git a/app/views/further_education_payments/claims/_ineligible_must_at_least_half_hours_teaching_fe.html.erb b/app/views/further_education_payments/claims/_ineligible_must_at_least_half_hours_teaching_fe.html.erb new file mode 100644 index 0000000000..4012f453b2 --- /dev/null +++ b/app/views/further_education_payments/claims/_ineligible_must_at_least_half_hours_teaching_fe.html.erb @@ -0,0 +1,24 @@ +
+ In order to claim a financial incentive payment, half of your timetabled teaching hours must include: +
+ + <%= govuk_list [ + "a student aged 16 to 19", + "a person up to age 25 with anĀ Education, Health and Care Plan (EHCP)", + ], 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") %>. +
+