Submit social housing lettings and sales data (CORE)
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.
|
|
|
class Form::Sales::Subsections::OutrightSale < ::Form::Subsection
|
|
|
|
def initialize(id, hsh, section)
|
|
|
|
super
|
|
|
|
@id = "outright_sale"
|
|
|
|
@label = "Outright sale"
|
|
|
|
@section = section
|
|
|
|
@depends_on = [{ "ownershipsch" => 3, "setup_completed?" => true }]
|
|
|
|
end
|
|
|
|
|
|
|
|
def pages
|
|
|
|
@pages ||= [
|
|
|
|
Form::Sales::Pages::AboutDeposit.new("about_deposit_outright_sale", nil, self),
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def displayed_in_tasklist?(log)
|
|
|
|
log.ownershipsch == 3
|
|
|
|
end
|
|
|
|
end
|