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.
13 lines
299 B
13 lines
299 B
2 years ago
|
class Form::Sales::Sections::Finances < ::Form::Section
|
||
|
def initialize(id, hsh, form)
|
||
|
super
|
||
|
@id = "finances"
|
||
|
@label = "Finances"
|
||
|
@description = ""
|
||
|
@form = form
|
||
|
@subsections = [
|
||
|
Form::Sales::Subsections::IncomeBenefitsAndOutgoings.new(nil, nil, self),
|
||
|
]
|
||
|
end
|
||
|
end
|