diff --git a/app/models/claim_checking_tasks.rb b/app/models/claim_checking_tasks.rb index 6cce65f32a..df2a7c49ef 100644 --- a/app/models/claim_checking_tasks.rb +++ b/app/models/claim_checking_tasks.rb @@ -12,7 +12,7 @@ def initialize(claim) delegate :policy, to: :claim def applicable_task_names - return %w[identity_confirmation visa arrival_date] if policy.international_relocation_payments? + return %w[identity_confirmation visa arrival_date employment] if policy.international_relocation_payments? @applicable_task_names ||= Task::NAMES.dup.tap do |task_names| task_names.delete("induction_confirmation") unless claim.policy == Policies::EarlyCareerPayments diff --git a/app/models/policies/international_relocation_payments/admin_tasks_presenter.rb b/app/models/policies/international_relocation_payments/admin_tasks_presenter.rb index 0515388e16..35f6cec0f1 100644 --- a/app/models/policies/international_relocation_payments/admin_tasks_presenter.rb +++ b/app/models/policies/international_relocation_payments/admin_tasks_presenter.rb @@ -15,6 +15,12 @@ def arrival_date ] end + def employment + [ + [translate("admin.current_school"), display_school(eligibility.current_school)] + ] + end + def identity_confirmation [ ["Nationality", eligibility.nationality], diff --git a/config/locales/en.yml b/config/locales/en.yml index 98f52827ee..7ae775bbfa 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -787,6 +787,8 @@ en: title: "Is the claimant’s visa type eligible for a claim?" arrival_date: title: "Does the claimant’s arrival date match the above information from their claim?" + employment: + title: "Does the claimant’s current school match the above information from their claim?" further_education_payments: landing_page: Find out if you are eligible for any incentive payments for further education teachers diff --git a/spec/support/admin_view_claim_feature_shared_examples.rb b/spec/support/admin_view_claim_feature_shared_examples.rb index 01a85ea19e..67cbc3cc5e 100644 --- a/spec/support/admin_view_claim_feature_shared_examples.rb +++ b/spec/support/admin_view_claim_feature_shared_examples.rb @@ -179,7 +179,7 @@ def expect_page_to_have_policy_sections(policy) when Policies::EarlyCareerPayments ["Identity confirmation", "Qualifications", "Induction confirmation", "Census subjects taught", "Employment", "Student loan plan", "Decision"] when Policies::InternationalRelocationPayments - ["Identity confirmation", "Visa", "Arrival date", "Decision"] + ["Identity confirmation", "Visa", "Arrival date", "Employment", "Decision"] else raise "Unimplemented policy: #{policy}" end