Class: Project

Inherits:
ApplicationRecord show all
Extended by:
EventfulRecord, Metadata
Includes:
AASM, Api::Messages::FlowcellIo::ProjectExtensions, Api::ProjectIo::Extensions, EventfulRecord, ModelExtensions::Project, Role::Authorized, SharedBehaviour::Named, Uuid::Uuidable
Defined in:
app/models/project.rb

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

Methods included from EventfulRecord

has_many_events, has_many_lab_events, has_one_event_with_family

Methods included from Metadata

has_metadata

Methods included from SharedBehaviour::Named

included

Methods included from Uuid::Uuidable

included, #unsaved_uuid!, #uuid

Methods included from Api::ProjectIo::Extensions

included

Methods inherited from ApplicationRecord

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

.statesObject



19
20
21
# File 'app/models/project.rb', line 19

def self.states
  Project.aasm.states.map(&:name)
end

Instance Method Details

#actionable?Boolean

Returns:

  • (Boolean)


87
88
89
# File 'app/models/project.rb', line 87

def actionable?
  .budget_division.name != 'Unallocated'
end

#managerObject



83
84
85
# File 'app/models/project.rb', line 83

def manager
  managers.first
end

#ownerObject



79
80
81
# File 'app/models/project.rb', line 79

def owner
  owners.first
end

#r_and_d?Boolean

Returns:

  • (Boolean)


98
99
100
# File 'app/models/project.rb', line 98

def r_and_d?
  .budget_division.name == configatron.r_and_d_division
end

#sequencing_budget_divisionObject



102
103
104
# File 'app/models/project.rb', line 102

def sequencing_budget_division
  .budget_division.name
end

#subject_typeObject



137
138
139
# File 'app/models/project.rb', line 137

def subject_type
  'project'
end

#submittable?Boolean

Returns:

  • (Boolean)


91
92
93
94
95
96
# File 'app/models/project.rb', line 91

def submittable?
  return true if .project_funding_model.present?

  errors.add(:base, 'No funding model specified')
  false
end