Class: Project
Overview
rubocop:disable Metrics/ClassLength
Defined Under Namespace
Classes: Metadata
Constant Summary
collapse
- ACTIVE_STATE =
'active'
- PROJECT_FUNDING_MODELS =
['', 'Internal', 'External', 'External - own machine'].freeze
Constants included
from Metadata
Metadata::SECTION_FIELDS
Class Method Summary
collapse
Instance Method Summary
collapse
has_many_events, has_many_lab_events, has_one_event_with_family
Methods included from Metadata
has_metadata
included
included, #unsaved_uuid!, #uuid
included
alias_association, convert_labware_to_receptacle_for, find_by_id_or_name, find_by_id_or_name!
Methods included from Squishify
extended
Class Method Details
.states ⇒ Object
20
21
22
|
# File 'app/models/project.rb', line 20
def self.states
Project.aasm.states.map(&:name)
end
|
Instance Method Details
#actionable? ⇒ Boolean
96
97
98
|
# File 'app/models/project.rb', line 96
def actionable?
project_metadata.budget_division.name != 'Unallocated'
end
|
#manager ⇒ Object
92
93
94
|
# File 'app/models/project.rb', line 92
def manager
managers.first
end
|
#owner ⇒ Object
88
89
90
|
# File 'app/models/project.rb', line 88
def owner
owners.first
end
|
#r_and_d? ⇒ Boolean
107
108
109
|
# File 'app/models/project.rb', line 107
def r_and_d?
project_metadata.budget_division.name == configatron.r_and_d_division
end
|
#sequencing_budget_division ⇒ Object
111
112
113
|
# File 'app/models/project.rb', line 111
def sequencing_budget_division
project_metadata.budget_division.name
end
|
#subject_type ⇒ Object
146
147
148
|
# File 'app/models/project.rb', line 146
def subject_type
'project'
end
|
#submittable? ⇒ Boolean
100
101
102
103
104
105
|
# File 'app/models/project.rb', line 100
def submittable?
return true if project_metadata.project_funding_model.present?
errors.add(:base, 'No funding model specified')
false
end
|