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.
16 lines
624 B
16 lines
624 B
1 year ago
|
class Form::Lettings::Questions::PschargeValueCheck < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "pscharge_value_check"
|
||
|
@check_answer_label = "Personal service charge confirmation"
|
||
|
@header = "Are you sure?"
|
||
|
@type = "interruption_screen"
|
||
|
@check_answers_card_number = 0
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
@hidden_in_check_answers = { "depends_on" => [{ "pscharge_value_check" => 0 }, { "pscharge_value_check" => 1 }] }
|
||
|
@hint_text = I18n.t("soft_validations.charges.hint_text")
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = { "0" => { "value" => "Yes" }, "1" => { "value" => "No" } }.freeze
|
||
|
end
|