Class: Condition

Inherits:
Entry show all
Defined in:
lib/health-data-standards/models/condition.rb

Instance Method Summary collapse

Methods inherited from Entry

#==, #add_reference, #as_point_in_time, #calculate_hash!, from_event_hash, #hash, #identifier, #is_date_range?, #is_in_code_set?, #set_value, #status, #status=, time_to_s, #times_to_s, #to_hash, #usable?

Methods included from ThingWithCodes

#add_code, #codes_in_code_set, #codes_to_s, convert_codes_to_s, included, #preferred_code, #single_code_value?, #translation_codes

Instance Method Details

#shift_dates(date_diff) ⇒ Object



18
19
20
21
# File 'lib/health-data-standards/models/condition.rb', line 18

def shift_dates(date_diff)
  super
  self.time_of_death = self.time_of_death.nil? ? nil : self.time_of_death + date_diff
end