Skip to content

Commit 40eefd6

Browse files
committed
Update Winter Fuel payment eligibility
- Winter Fuel outcome no longer comes up for Northern Ireland, with an advisory message on top. - Updating Winter Fuel outcome in line with changes, no longer requiring existing benefits, and warning about HMRC clawback if income is over £35k. - Updating requirements for Winter Fuel only to be of Pension Age. (No existing benefit claiming required.)
1 parent a372bdc commit 40eefd6

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p class="govuk-body">You might be eligible for a <a class="govuk-link" href="/guidance/cost-of-living-payment">Winter Fuel Payment from the Northern Ireland Executive</a>.</p>

app/flows/check_benefits_financial_support_flow/outcomes/results.erb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<% end %>
77
<p class="govuk-body">This tool does not include all the ways you can get help with living costs. It will be updated with more types of support.</p>
88

9+
<% if calculator.where_do_you_live == "northern-ireland" %>
10+
<%= render partial: 'northern_ireland_winter_fuel' %>
11+
<% end %>
12+
913
<div class="govuk-!-margin-top-8 govuk-!-margin-bottom-9">
1014
<% calculator.benefits_for_outcome.each do |benefit| %>
1115
<%= render "components/result_card", {

config/smart_answers/check_benefits_financial_support_data.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -227,15 +227,13 @@
227227
- england
228228
- name: winter_fuel_payment
229229
title: Winter Fuel Payment
230-
description: <p>You'll automatically get a Winter Fuel Payment if you get Pension Credit or certain benefits. You should get a letter in October or November telling you how much you'll get, if you’re eligible.</p>
230+
description: <p>You'll automatically get a Winter Fuel Payment if you’ve reached State Pension age. You should get a letter in October or November telling you how much youll get, if you’re eligible.</p><p class="govuk-body"><b><a class="govuk-link" href="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/winter-fuel-payment/report-change-circumstances">If you do not get a letter, check if you're eligible and whether you need to claim a Winter Fuel Payment</a></b><p>If your taxable income is over £35,000, HMRC will take back your Winter Fuel Payment through the tax system.</p><p class="govuk-body">You can <a class="govuk-link" href="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/winter-fuel-payment/report-change-circumstances">opt out of getting the Winter Fuel Payment</a> if you do not want to receive it.</p>
231231
condition: eligible_for_winter_fuel_payment?
232-
url: /winter-fuel-payment/how-to-claim
233-
url_text: If you do not get a letter, check if you're eligible and whether you need to claim a Winter Fuel Payment
232+
url: nil
233+
url_text: ""
234234
countries:
235235
- england
236236
- wales
237-
- scotland
238-
- northern-ireland
239237
- name: carers_allowance
240238
title: Carer’s Allowance
241239
description: <p>You may be able to get Carer’s Allowance if you care for someone at least 35 hours a week. The person you care for must also be getting certain disability benefits.</p>

lib/smart_answer/calculators/check_benefits_financial_support_calculator.rb

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -230,16 +230,9 @@ def eligible_for_child_disability_support?
230230
end
231231

232232
def eligible_for_winter_fuel_payment?
233-
return false if @where_do_you_live == "scotland"
234-
return false unless @over_state_pension_age == "yes"
235-
return false if @on_benefits == "no"
236-
return true if @on_benefits == "dont_know"
237-
238-
qualifying_benefits = %w[universal_credit jobseekers_allowance employment_and_support_allowance pension_credit income_support]
239-
qualifying_benefits.each do |benefit|
240-
return true if @current_benefits.include?(benefit)
241-
end
242-
false
233+
return false if
234+
@where_do_you_live == "scotland" || @where_do_you_live == "northern-ireland"
235+
return true if @over_state_pension_age == "yes"
243236
end
244237

245238
def eligible_for_carers_allowance?

0 commit comments

Comments
 (0)