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.
25 lines
577 B
25 lines
577 B
1 month ago
|
class Form::Sales::Questions::HasManagementFee < ::Form::Question
|
||
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
|
@id = "has_management_fee"
|
||
|
@copy_key = "sales.sale_information.management_fee.has_management_fee"
|
||
|
@type = "radio"
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
@conditional_for = {
|
||
|
"management_fee" => [1],
|
||
|
}
|
||
|
@hidden_in_check_answers = {
|
||
|
"depends_on" => [
|
||
|
{
|
||
|
"has_management_fee" => 1,
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"1" => { "value" => "Yes" },
|
||
|
"0" => { "value" => "No" },
|
||
|
}.freeze
|
||
|
end
|