2019-12-09 23:38:21 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RepositoryNumberValue < ApplicationRecord
|
|
|
|
belongs_to :created_by, foreign_key: :created_by_id, class_name: 'User',
|
2019-12-10 19:02:08 +08:00
|
|
|
inverse_of: :created_repository_number_values
|
2019-12-09 23:38:21 +08:00
|
|
|
belongs_to :last_modified_by, foreign_key: :last_modified_by_id, class_name: 'User',
|
2019-12-10 19:02:08 +08:00
|
|
|
inverse_of: :modified_repository_number_values
|
2019-12-09 23:38:21 +08:00
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
|
|
|
validates :repository_cell, :data, presence: true
|
|
|
|
|
|
|
|
SORTABLE_COLUMN_NAME = 'repository_number_values.data'
|
|
|
|
|
|
|
|
def formatted
|
2020-01-06 16:39:38 +08:00
|
|
|
data.to_s
|
2019-12-09 23:38:21 +08:00
|
|
|
end
|
2019-12-18 18:55:12 +08:00
|
|
|
|
|
|
|
def data_changed?(new_data)
|
2021-03-29 21:59:24 +08:00
|
|
|
BigDecimal(new_data.to_s) != data
|
2019-12-18 18:55:12 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_data!(new_data, user)
|
2021-03-29 21:59:24 +08:00
|
|
|
self.data = BigDecimal(new_data.to_s)
|
2019-12-18 18:55:12 +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-18 18:55:12 +08:00
|
|
|
def self.new_with_payload(payload, attributes)
|
|
|
|
value = new(attributes)
|
2021-03-29 21:59:24 +08:00
|
|
|
value.data = BigDecimal(payload.to_s)
|
2019-12-18 18:55:12 +08:00
|
|
|
value
|
|
|
|
end
|
2020-01-10 16:29:20 +08:00
|
|
|
|
2020-03-05 21:34:31 +08:00
|
|
|
def self.import_from_text(text, attributes, _options = {})
|
2021-03-29 21:59:24 +08:00
|
|
|
new(attributes.merge(data: BigDecimal(text.to_s)))
|
2020-02-03 22:20:01 +08:00
|
|
|
rescue ArgumentError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2020-01-10 16:29:20 +08:00
|
|
|
alias export_formatted formatted
|
2019-12-09 23:38:21 +08:00
|
|
|
end
|