2016-02-12 23:52:43 +08:00
|
|
|
class CustomField < ActiveRecord::Base
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :name, nullify: false
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :name,
|
2016-09-21 21:35:23 +08:00
|
|
|
presence: true,
|
2016-10-05 23:45:20 +08:00
|
|
|
length: { maximum: Constants::NAME_MAX_LENGTH },
|
2016-09-21 22:15:56 +08:00
|
|
|
uniqueness: { scope: :organization, case_sensitive: true },
|
|
|
|
exclusion: { in: ['Assigned', 'Sample name', 'Sample type',
|
|
|
|
'Sample group', 'Added on', 'Added by'] }
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :user, :organization, presence: true
|
|
|
|
|
|
|
|
belongs_to :user, inverse_of: :custom_fields
|
|
|
|
belongs_to :organization, inverse_of: :custom_fields
|
2016-09-21 22:15:56 +08:00
|
|
|
belongs_to :last_modified_by,
|
|
|
|
foreign_key: 'last_modified_by_id',
|
|
|
|
class_name: 'User'
|
2016-02-12 23:52:43 +08:00
|
|
|
has_many :sample_custom_fields, inverse_of: :custom_field
|
2016-12-07 23:37:16 +08:00
|
|
|
|
2016-12-08 00:43:00 +08:00
|
|
|
after_create :update_samples_table_state
|
2016-12-08 00:25:42 +08:00
|
|
|
|
|
|
|
def update_samples_table_state
|
2016-12-07 23:37:16 +08:00
|
|
|
samples_table = SamplesTable.where(user: user,
|
2016-12-08 00:25:42 +08:00
|
|
|
organization: organization)
|
2016-12-07 23:37:16 +08:00
|
|
|
org_status = samples_table.first['status']
|
|
|
|
index = org_status['columns'].count
|
|
|
|
org_status['columns'][index] = { 'visible' => true,
|
|
|
|
'search' => { 'search' => '',
|
|
|
|
'smart' => true,
|
|
|
|
'regex' => false,
|
|
|
|
'caseInsensitive' => true } }
|
|
|
|
org_status['ColReorder'] << index
|
|
|
|
samples_table.first.update(status: org_status)
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|