Class: BGSDependents::Divorce
- Inherits:
-
Base
- Object
- Common::Base
- Base
- BGSDependents::Divorce
- Defined in:
- app/models/bgs_dependents/divorce.rb
Constant Summary
Constants inherited from Base
Base::MILITARY_POST_OFFICE_TYPE_CODES
Instance Attribute Summary
Attributes inherited from Common::Base
Instance Method Summary collapse
- #format_info ⇒ Object
-
#initialize(divorce_info) ⇒ Divorce
constructor
A new instance of Divorce.
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(divorce_info) ⇒ Divorce
Returns a new instance of Divorce.
5 6 7 |
# File 'app/models/bgs_dependents/divorce.rb', line 5 def initialize(divorce_info) @divorce_info = divorce_info end |
Instance Method Details
#format_info ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'app/models/bgs_dependents/divorce.rb', line 9 def format_info { divorce_state: @divorce_info.dig('location', 'state'), divorce_city: @divorce_info.dig('location', 'city'), divorce_country: @divorce_info.dig('location', 'country'), marriage_termination_type_code: @divorce_info['reason_marriage_ended'], end_date: format_date(@divorce_info['date']), vet_ind: 'N', ssn: @divorce_info['ssn'], birth_date: @divorce_info['birth_date'], type: 'divorce', spouse_income: formatted_boolean(@divorce_info['spouse_income']) }.merge(@divorce_info['full_name']).with_indifferent_access end |