2019-05-07 19:47:50 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-23 21:19:08 +08:00
|
|
|
class RepositoryDateValue < ApplicationRecord
|
2019-05-07 19:47:50 +08:00
|
|
|
belongs_to :created_by, foreign_key: :created_by_id, class_name: 'User'
|
|
|
|
belongs_to :last_modified_by, foreign_key: :last_modified_by_id, class_name: 'User'
|
2017-06-06 23:35:29 +08:00
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy
|
2017-05-16 21:27:36 +08:00
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
|
|
|
validates :repository_cell, presence: true
|
2019-05-07 19:47:50 +08:00
|
|
|
validates :data, presence: true
|
2017-06-06 23:35:29 +08:00
|
|
|
|
|
|
|
def formatted
|
|
|
|
data
|
|
|
|
end
|
2018-08-23 20:52:00 +08:00
|
|
|
|
2018-08-24 17:26:49 +08:00
|
|
|
def data_changed?(new_data)
|
|
|
|
new_data != data
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_data!(new_data, user)
|
|
|
|
self.data = new_data
|
|
|
|
self.last_modified_by = user
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
2018-08-23 20:52:00 +08:00
|
|
|
def self.new_with_payload(payload, attributes)
|
|
|
|
value = new(attributes)
|
|
|
|
value.data = payload
|
|
|
|
value
|
|
|
|
end
|
2017-05-16 21:27:36 +08:00
|
|
|
end
|