2019-12-06 19:50:19 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RepositoryDateTimeValueBase < ApplicationRecord
|
|
|
|
self.table_name = 'repository_date_time_values'
|
|
|
|
|
|
|
|
belongs_to :created_by, foreign_key: :created_by_id, class_name: 'User', optional: true,
|
2019-12-10 16:40:40 +08:00
|
|
|
inverse_of: :created_repository_date_time_values
|
2019-12-06 19:50:19 +08:00
|
|
|
belongs_to :last_modified_by, foreign_key: :last_modified_by_id, class_name: 'User', optional: true,
|
2019-12-10 16:40:40 +08:00
|
|
|
inverse_of: :modified_repository_date_time_values
|
2020-02-17 07:26:20 +08:00
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy
|
2019-12-06 19:50:19 +08:00
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
2020-01-09 04:07:20 +08:00
|
|
|
validates :repository_cell, :data, :type, presence: true
|
2019-12-06 19:50:19 +08:00
|
|
|
|
|
|
|
SORTABLE_COLUMN_NAME = 'repository_date_time_values.data'
|
2020-01-09 23:18:28 +08:00
|
|
|
SORTABLE_VALUE_INCLUDE = :repository_date_time_value_base
|
2019-12-06 19:50:19 +08:00
|
|
|
|
2020-02-03 22:20:01 +08:00
|
|
|
def formatted(format)
|
|
|
|
I18n.l(data, format: format)
|
|
|
|
end
|
|
|
|
|
2019-12-06 19:50:19 +08:00
|
|
|
def update_data!(new_data, user)
|
2019-12-08 23:53:59 +08:00
|
|
|
self.data = Time.zone.parse(new_data)
|
2019-12-06 19:50:19 +08:00
|
|
|
self.last_modified_by = user
|
|
|
|
save!
|
|
|
|
end
|
2020-04-09 18:33:04 +08:00
|
|
|
|
|
|
|
def snapshot!(cell_snapshot)
|
|
|
|
value_snapshot = dup
|
|
|
|
value_snapshot.assign_attributes(
|
|
|
|
repository_cell: cell_snapshot,
|
|
|
|
created_at: created_at,
|
|
|
|
updated_at: updated_at
|
|
|
|
)
|
|
|
|
value_snapshot.save!
|
|
|
|
end
|
2019-12-06 19:50:19 +08:00
|
|
|
end
|