Kat
2 years ago
2 changed files with 15 additions and 0 deletions
@ -0,0 +1,14 @@
|
||||
class Form::Sales::Sections::SaleInformation < ::Form::Section |
||||
def initialize(id, hsh, form) |
||||
super |
||||
@id = "sale_information" |
||||
@label = "Sale information" |
||||
@description = "" |
||||
@form = form |
||||
@subsections = [ |
||||
Form::Sales::Subsections::SharedOwnershipScheme.new(nil, nil, self), |
||||
Form::Sales::Subsections::DiscountedOwnershipScheme.new(nil, nil, self), |
||||
Form::Sales::Subsections::OutrightSale.new(nil, nil, self), |
||||
] || [] |
||||
end |
||||
end |
Loading…
Reference in new issue