|
|
|
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
|