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.
 
 
 
 

17 lines
416 B

class Form::Sales::Subsections::DiscountedOwnershipScheme < ::Form::Subsection
def initialize(id, hsh, section)
super
@id = "discounted_ownership_scheme"
@label = "Discounted ownership scheme"
@section = section
@depends_on = [{ "ownershipsch" => 2, "setup_completed?" => true }]
end
def pages
@pages ||= []
end
def displayed_in_tasklist?(log)
log.ownershipsch == 2
end
end