Class: BGSDependents::ChildMarriage

Inherits:
Base show all
Defined in:
app/models/bgs_dependents/child_marriage.rb

Constant Summary

Constants inherited from Base

Base::MILITARY_POST_OFFICE_TYPE_CODES

Instance Attribute Summary

Attributes inherited from Common::Base

#errors_hash, #metadata

Instance Method Summary collapse

Methods inherited from Base

#adjust_address_lines_for!, #adjust_country_name_for!, #create_address_params, #create_person_params, #dependent_address, #format_date, #formatted_boolean, #generate_address, #relationship_type, #serialize_dependent_result

Methods inherited from Common::Base

#changed, #changed?, #changes, default_sort, filterable_attributes, max_per_page, per_page, sortable_attributes

Constructor Details

#initialize(child_marriage) ⇒ ChildMarriage

Returns a new instance of ChildMarriage.



5
6
7
# File 'app/models/bgs_dependents/child_marriage.rb', line 5

def initialize(child_marriage)
  @child_marriage = child_marriage
end

Instance Method Details

#format_infoObject



9
10
11
12
13
14
15
16
17
# File 'app/models/bgs_dependents/child_marriage.rb', line 9

def format_info
  {
    event_date: @child_marriage['date_married'],
    ssn: @child_marriage['ssn'],
    birth_date: @child_marriage['birth_date'],
    ever_married_ind: 'Y',
    dependent_income: formatted_boolean(@child_marriage['dependent_income'])
  }.merge(@child_marriage['full_name']).with_indifferent_access
end