16 lines
379 B
16 lines
379 B
class Form::Sales::Pages::HandoverDate < ::Form::Page |
|
def initialize(id, hsh, subsection) |
|
super |
|
@id = "handover_date" |
|
@copy_key = "sales.sale_information.handover_date" |
|
@depends_on = [ |
|
{ "ownershipsch" => 1, "resale" => 2 }, |
|
] |
|
end |
|
|
|
def questions |
|
@questions ||= [ |
|
Form::Sales::Questions::HandoverDate.new(nil, nil, self), |
|
] |
|
end |
|
end
|
|
|