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.
29 lines
663 B
29 lines
663 B
class Form::Sales::Questions::HandoverDateCheck < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "hodate_check" |
|
@check_answer_label = "Practical completion or handover date check" |
|
@header = "Are you sure?" |
|
@type = "interruption_screen" |
|
@answer_options = { |
|
"0" => { "value" => "Yes" }, |
|
"1" => { "value" => "No" }, |
|
} |
|
@hidden_in_check_answers = { |
|
"depends_on" => [ |
|
{ |
|
"hodate_check" => 0, |
|
}, |
|
{ |
|
"hodate_check" => 1, |
|
}, |
|
{ |
|
"saledate_check" => 0, |
|
}, |
|
{ |
|
"saledate_check" => 1, |
|
}, |
|
], |
|
} |
|
end |
|
end
|
|
|