Class: Determiner

Inherits:
Role::ProjectRole show all
Includes:
Roles::Organization, Shared::DwcOccurrenceHooks
Defined in:
app/models/determiner.rb

Instance Attribute Summary

Attributes inherited from Role

#organization_id, #person_id, #position, #project_id, #role_object_id, #role_object_type, #type

Attributes included from Housekeeping::Users

#by

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Role::ProjectRole

#set_project_if_possible

Methods included from Housekeeping

#has_polymorphic_relationship?

Methods inherited from Role

#agent, #agent_is_legal, #agent_present, #agent_type, #cached_trigger_methods, #cached_triggers, #do_not_set_cached, #is_last_role?, #only_one_agent, #organization_allowed?, #set_cached, #set_role_object_cached

Methods included from Shared::IsData

#errors_excepting, #full_error_messages_excepting, #identical, #is_community?, #is_destroyable?, #is_editable?, #is_in_use?, #is_in_users_projects?, #metamorphosize, #similar

Methods included from Shared::PolymorphicAnnotator

#annotated_object_is_persisted?

Methods included from Housekeeping::Users

#set_created_by_id, #set_updated_by_id

Methods inherited from ApplicationRecord

transaction_with_retry

Class Method Details

.human_nameObject



20
21
22
# File 'app/models/determiner.rb', line 20

def self.human_name
  'Determiner'
end

Instance Method Details

#dwc_occurrencesObject



11
12
13
14
15
16
17
18
# File 'app/models/determiner.rb', line 11

def dwc_occurrences
  DwcOccurrence
    .joins("JOIN collection_objects co on dwc_occurrence_object_id = co.id AND dwc_occurrence_object_type = 'CollectionObject'")
    .joins("JOIN taxon_determinations td on co.id = td.taxon_determination_object_id AND td.taxon_determination_object_type = 'CollectionObject'")
    .joins("JOIN roles r on r.type = 'Determiner' AND r.role_object_type = 'TaxonDetermination' AND r.role_object_id = td.id")
    .where(r: {id:})
    .distinct
end

#year_active_yearObject



24
25
26
# File 'app/models/determiner.rb', line 24

def year_active_year
  role_object.year_made
end