Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 lines
1.1 KiB

class Form::Sales::Pages::SavingsValueCheck < ::Form::Page
def initialize(id, hsh, subsection, joint_purchase:)
super(id, hsh, subsection)
@title_text = {
"translation" => "soft_validations.savings.title_text.#{joint_purchase ? 'two' : 'one'}",
"arguments" => [
{
"key" => "field_formatted_as_currency",
"arguments_for_key" => "savings",
"i18n_template" => "savings",
},
],
}
@informative_text = {
"translation" => "soft_validations.savings.hint_text",
"arguments" => [],
}
@joint_purchase = joint_purchase
end
def questions
@questions ||= [
Form::Sales::Questions::SavingsValueCheck.new(nil, nil, self),
]
end
def interruption_screen_question_ids
%w[savings]
end
def depends_on
if @joint_purchase
[{ "joint_purchase?" => true, "savings_over_soft_max?" => true }]
else
[{ "not_joint_purchase?" => true, "savings_over_soft_max?" => true },
{ "jointpur" => nil, "savings_over_soft_max?" => true }]
end
end
end