15 lines
334 B
15 lines
334 B
class Form::Sales::Pages::PurchasePrice < ::Form::Page |
|
def initialize(id, hsh, subsection) |
|
super |
|
@depends_on = [ |
|
{ "ownershipsch" => 3 }, |
|
{ "rent_to_buy_full_ownership?" => true }, |
|
] |
|
end |
|
|
|
def questions |
|
@questions ||= [ |
|
Form::Sales::Questions::PurchasePrice.new(nil, nil, self), |
|
] |
|
end |
|
end
|
|
|