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

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

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



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

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

Instance Method Details

#actionable?Boolean

Returns:

  • (Boolean)


96
97
98
# File 'app/models/project.rb', line 96

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

#managerObject



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

def manager
  managers.first
end

#ownerObject



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

def owner
  owners.first
end

#r_and_d?Boolean

Returns:

  • (Boolean)


107
108
109
# File 'app/models/project.rb', line 107

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

#sequencing_budget_divisionObject



111
112
113
# File 'app/models/project.rb', line 111

def sequencing_budget_division
  .budget_division.name
end

#subject_typeObject



146
147
148
# File 'app/models/project.rb', line 146

def subject_type
  'project'
end

#submittable?Boolean

Returns:

  • (Boolean)


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

def submittable?
  return true if .project_funding_model.present?

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