diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement.rb b/lib/smart_answer_flows/calculate-your-holiday-entitlement.rb index 7f0abc362bd..da4b8204a60 100644 --- a/lib/smart_answer_flows/calculate-your-holiday-entitlement.rb +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement.rb @@ -6,6 +6,8 @@ def define status :published satisfies_need "100143" + use_erb_templates_for_questions + # Q1 multiple_choice :basis_of_calculation? do option "days-worked-per-week" diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/annualised_hours.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/annualised_hours.govspeak.erb new file mode 100644 index 00000000000..923eb071bf1 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/annualised_hours.govspeak.erb @@ -0,0 +1,15 @@ +<% content_for :title do %> + How many hours will be worked a year? +<% end %> + +<% content_for :hint do %> + This is calculated by excluding statutory entitlement. This calculation isn't suitable for term-time workers. +<% end %> + +<% content_for :label do %> + Hours per year +<% end %> + +<% content_for :error_message do %> + You need to enter a number greater than 0. Don't enter fractions. If you work half-hours, enter .5 for half. eg 340.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/basis_of_calculation.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/basis_of_calculation.govspeak.erb new file mode 100644 index 00000000000..007b0607364 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/basis_of_calculation.govspeak.erb @@ -0,0 +1,16 @@ +<% content_for :title do %> + Is the holiday entitlement based on: +<% end %> + +<% options( + "days-worked-per-week": "days worked per week", + "hours-worked-per-week": "hours worked per week", + "casual-or-irregular-hours": "casual or irregular hours", + "annualised-hours": "annualised hours", + "compressed-hours": "compressed hours", + "shift-worker": "shifts" +) %> + +<% content_for :hint do %> + Check the employment contract if you’re not sure about the holiday entitlement. +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/calculation_period.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/calculation_period.govspeak.erb new file mode 100644 index 00000000000..1826515dd82 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/calculation_period.govspeak.erb @@ -0,0 +1,10 @@ +<% content_for :title do %> + Do you want to work out holiday: +<% end %> + +<% options( + "full-year": "for a full leave year", + "starting": "for someone starting part way through a leave year", + "leaving": "for someone leaving part way through a leave year", + "starting-and-leaving": "for someone starting and leaving part way through a leave year" +) %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/casual_or_irregular_hours.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/casual_or_irregular_hours.govspeak.erb new file mode 100644 index 00000000000..662c47bd8a1 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/casual_or_irregular_hours.govspeak.erb @@ -0,0 +1,15 @@ +<% content_for :title do %> + How many hours have been worked in this leave year? +<% end %> + +<% content_for :hint do %> + The holiday entitlement may be calculated as the leave builds up ('accrues') for each hour worked. +<% end %> + +<% content_for :label do %> + Hours worked +<% end %> + +<% content_for :error_message do %> + You need to enter a number greater than 0. Don't enter fractions. If you work half-hours, enter .5 for half. eg 340.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/compressed_hours_how_many_days_per_week.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/compressed_hours_how_many_days_per_week.govspeak.erb new file mode 100644 index 00000000000..7b64013301a --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/compressed_hours_how_many_days_per_week.govspeak.erb @@ -0,0 +1,11 @@ +<% content_for :title do %> + Number of days per week worked? +<% end %> + +<% content_for :label do %> + Days per week +<% end %> + +<% content_for :error_message do %> + Please check and enter a correct value. Don't enter fractions. If you work half-days, enter .5 for half. eg 4.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/compressed_hours_how_many_hours_per_week.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/compressed_hours_how_many_hours_per_week.govspeak.erb new file mode 100644 index 00000000000..89d023032b3 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/compressed_hours_how_many_hours_per_week.govspeak.erb @@ -0,0 +1,11 @@ +<% content_for :title do %> + How many hours are worked per week? +<% end %> + +<% content_for :label do %> + Hours per week +<% end %> + +<% content_for :error_message do %> + You can enter a maximum of 168 hours per week. Don't enter fractions. If you work half-hours, enter .5 for half. eg 40.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/how_many_days_per_week.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/how_many_days_per_week.govspeak.erb new file mode 100644 index 00000000000..eb30b79e4c3 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/how_many_days_per_week.govspeak.erb @@ -0,0 +1,11 @@ +<% content_for :title do %> + Number of days worked per week? +<% end %> + +<% content_for :hint do %> + If you work half-days enter .5 for a half, eg 3.5 for three and a half days. +<% end %> + +<% content_for :error_message do %> + Please check and enter a correct value. Don't enter fractions. If you work half-days, enter .5 for half. eg 4.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/how_many_hours_per_week.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/how_many_hours_per_week.govspeak.erb new file mode 100644 index 00000000000..445a3729fde --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/how_many_hours_per_week.govspeak.erb @@ -0,0 +1,11 @@ +<% content_for :title do %> + Number of hours worked per week? +<% end %> + +<% content_for :hint do %> + If you work half-hours enter .5 for a half, eg 40.5. +<% end %> + +<% content_for :error_message do %> + You can enter a maximum of 168 hours per week. Don't enter fractions. If you work half-hours, enter .5 for half. eg 40.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_basis.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_basis.govspeak.erb new file mode 100644 index 00000000000..57e082b2533 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_basis.govspeak.erb @@ -0,0 +1,10 @@ +<% content_for :title do %> + Do you want to calculate the holiday: +<% end %> + +<% options( + "full-year": "for a full leave year", + "starting": "for someone starting part way through a leave year", + "leaving": "for someone leaving part way through a leave year", + "starting-and-leaving": "for someone starting and leaving part way through a leave year" +) %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_days_per_shift_pattern.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_days_per_shift_pattern.govspeak.erb new file mode 100644 index 00000000000..f4f6ec8adaf --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_days_per_shift_pattern.govspeak.erb @@ -0,0 +1,15 @@ +<% content_for :title do %> + How many days in the shift pattern? +<% end %> + +<% content_for :hint do %> + The shift pattern includes non-working days. +<% end %> + +<% content_for :label do %> + Days per pattern +<% end %> + +<% content_for :error_message do %> + You need to enter a number greater than or equal to the number of shifts you work. Don't enter fractions. If you work half-days, enter .5 for half. eg 4.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_hours_per_shift.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_hours_per_shift.govspeak.erb new file mode 100644 index 00000000000..14d7512e0ea --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_hours_per_shift.govspeak.erb @@ -0,0 +1,11 @@ +<% content_for :title do %> + How many hours in each shift? +<% end %> + +<% content_for :label do %> + Hours per shift +<% end %> + +<% content_for :error_message do %> + You need to enter a number greater than 0. Don't enter fractions. If you work half-hours, enter .5 for half. eg 4.5 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_shifts_per_shift_pattern.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_shifts_per_shift_pattern.govspeak.erb new file mode 100644 index 00000000000..7325d369fd1 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_shifts_per_shift_pattern.govspeak.erb @@ -0,0 +1,11 @@ +<% content_for :title do %> + How many shifts will be worked per shift pattern? +<% end %> + +<% content_for :label do %> + Shifts per pattern +<% end %> + +<% content_for :error_message do %> + You need to enter a number greater than 0 +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/what_is_your_leaving_date.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/what_is_your_leaving_date.govspeak.erb new file mode 100644 index 00000000000..084d7b0ef6d --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/what_is_your_leaving_date.govspeak.erb @@ -0,0 +1,3 @@ +<% content_for :title do %> + What was the employment end date? +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/what_is_your_starting_date.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/what_is_your_starting_date.govspeak.erb new file mode 100644 index 00000000000..1b47018d449 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/what_is_your_starting_date.govspeak.erb @@ -0,0 +1,3 @@ +<% content_for :title do %> + What was the employment start date? +<% end %> diff --git a/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/when_does_your_leave_year_start.govspeak.erb b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/when_does_your_leave_year_start.govspeak.erb new file mode 100644 index 00000000000..f5cf83c2d49 --- /dev/null +++ b/lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/when_does_your_leave_year_start.govspeak.erb @@ -0,0 +1,7 @@ +<% content_for :title do %> + When does the leave year start? +<% end %> + +<% content_for :hint do %> + This is usually in the employment contract. If it isn’t and the job was started after 1 October 1998, the leave year will start on the 1st day of the job. If the job was started on or before 1 October 1998, the leave year will start on 1 October. +<% end %> diff --git a/lib/smart_answer_flows/locales/en/calculate-your-holiday-entitlement.yml b/lib/smart_answer_flows/locales/en/calculate-your-holiday-entitlement.yml deleted file mode 100644 index 0e4972a1abb..00000000000 --- a/lib/smart_answer_flows/locales/en/calculate-your-holiday-entitlement.yml +++ /dev/null @@ -1,104 +0,0 @@ -en-GB: - flow: - calculate-your-holiday-entitlement: - phrases: - - your_employer: | - The employer: - - * can include public and bank holidays as part of the statutory entitlement - * can give more paid holiday - this will be in the employment contract and is called 'contractual leave entitlement' - * must provide [holiday pay](/holiday-entitlement-rights/holiday-pay-the-basics "Holiday pay") during the statutory leave - - # Q1 - basis_of_calculation?: - title: "Is the holiday entitlement based on:" - hint: | - Check the employment contract if you’re not sure about the holiday entitlement. - options: - "days-worked-per-week": "days worked per week" - "hours-worked-per-week": "hours worked per week" - "casual-or-irregular-hours": "casual or irregular hours" - "annualised-hours": "annualised hours" - "compressed-hours": "compressed hours" - "shift-worker": "shifts" - - # Q2 - calculation_period?: - title: "Do you want to work out holiday:" - options: - "full-year": "for a full leave year" - "starting": "for someone starting part way through a leave year" - "leaving": "for someone leaving part way through a leave year" - "starting-and-leaving": "for someone starting and leaving part way through a leave year" - - # Q3 - how_many_days_per_week?: - title: Number of days worked per week? - hint: If you work half-days enter .5 for a half, eg 3.5 for three and a half days. - error_message: Please check and enter a correct value. Don't enter fractions. If you work half-days, enter .5 for half. eg 4.5 - # Q4 - what_is_your_starting_date?: - title: What was the employment start date? - # Q5 - what_is_your_leaving_date?: - title: What was the employment end date? - - how_many_hours_per_week?: - title: Number of hours worked per week? - hint: If you work half-hours enter .5 for a half, eg 40.5. - error_message: You can enter a maximum of 168 hours per week. Don't enter fractions. If you work half-hours, enter .5 for half. eg 40.5 - - # Q13 - compressed_hours_how_many_hours_per_week?: - title: How many hours are worked per week? - label: Hours per week - error_message: You can enter a maximum of 168 hours per week. Don't enter fractions. If you work half-hours, enter .5 for half. eg 40.5 - - compressed_hours_how_many_days_per_week?: - title: Number of days per week worked? - label: Days per week - error_message: Please check and enter a correct value. Don't enter fractions. If you work half-days, enter .5 for half. eg 4.5 - - # Q11 - casual_or_irregular_hours?: - title: How many hours have been worked in this leave year? - hint: The holiday entitlement may be calculated as the leave builds up ('accrues') for each hour worked. - label: Hours worked - error_message: You need to enter a number greater than 0. Don't enter fractions. If you work half-hours, enter .5 for half. eg 340.5 - - annualised_hours?: - title: How many hours will be worked a year? - hint: This is calculated by excluding statutory entitlement. This calculation isn't suitable for term-time workers. - label: Hours per year - error_message: You need to enter a number greater than 0. Don't enter fractions. If you work half-hours, enter .5 for half. eg 340.5 - - # Q15 - shift_worker_basis?: - title: "Do you want to calculate the holiday:" - options: - "full-year": "for a full leave year" - "starting": "for someone starting part way through a leave year" - "leaving": "for someone leaving part way through a leave year" - "starting-and-leaving": "for someone starting and leaving part way through a leave year" - - shift_worker_hours_per_shift?: - title: How many hours in each shift? - label: Hours per shift - error_message: You need to enter a number greater than 0. Don't enter fractions. If you work half-hours, enter .5 for half. eg 4.5 - - shift_worker_shifts_per_shift_pattern?: - title: How many shifts will be worked per shift pattern? - label: Shifts per pattern - error_message: You need to enter a number greater than 0 - - # Q20 - shift_worker_days_per_shift_pattern?: - title: How many days in the shift pattern? - hint: The shift pattern includes non-working days. - label: Days per pattern - error_message: You need to enter a number greater than or equal to the number of shifts you work. Don't enter fractions. If you work half-days, enter .5 for half. eg 4.5 - - when_does_your_leave_year_start?: - title: When does the leave year start? - hint: This is usually in the employment contract. If it isn’t and the job was started after 1 October 1998, the leave year will start on the 1st day of the job. If the job was started on or before 1 October 1998, the leave year will start on 1 October. diff --git a/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html b/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html index dc85e36b28c..a0788c7c537 100644 --- a/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html +++ b/test/artefacts/calculate-your-holiday-entitlement/annualised-hours.html @@ -37,7 +37,8 @@
This is calculated by excluding statutory entitlement. This calculation isn't suitable for term-time workers.
+ +This is calculated by excluding statutory entitlement. This calculation isn't suitable for term-time workers.
The holiday entitlement may be calculated as the leave builds up ('accrues') for each hour worked.
+ +The holiday entitlement may be calculated as the leave builds up ('accrues') for each hour worked.
If you work half-days enter .5 for a half, eg 3.5 for three and a half days.
This is usually in the employment contract. If it isn’t and the job was started after 1 October 1998, the leave year will start on the 1st day of the job. If the job was started on or before 1 October 1998, the leave year will start on 1 October.
If you work half-hours enter .5 for a half, eg 40.5.
The shift pattern includes non-working days.
Check the employment contract if you’re not sure about the holiday entitlement. -
+ +Check the employment contract if you’re not sure about the holiday entitlement.