Class: Project
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
19
20
21
|
# File 'app/models/project.rb', line 19
def self.states
Project.aasm.states.map(&:name)
end
|
Instance Method Details
#actionable? ⇒ Boolean
87
88
89
|
# File 'app/models/project.rb', line 87
def actionable?
project_metadata.budget_division.name != 'Unallocated'
end
|
#manager ⇒ Object
83
84
85
|
# File 'app/models/project.rb', line 83
def manager
managers.first
end
|
#owner ⇒ Object
79
80
81
|
# File 'app/models/project.rb', line 79
def owner
owners.first
end
|
#r_and_d? ⇒ Boolean
98
99
100
|
# File 'app/models/project.rb', line 98
def r_and_d?
project_metadata.budget_division.name == configatron.r_and_d_division
end
|
#sequencing_budget_division ⇒ Object
102
103
104
|
# File 'app/models/project.rb', line 102
def sequencing_budget_division
project_metadata.budget_division.name
end
|
#subject_type ⇒ Object
137
138
139
|
# File 'app/models/project.rb', line 137
def subject_type
'project'
end
|
#submittable? ⇒ Boolean
91
92
93
94
95
96
|
# File 'app/models/project.rb', line 91
def submittable?
return true if project_metadata.project_funding_model.present?
errors.add(:base, 'No funding model specified')
false
end
|