scinote-web/app/models/my_module_repository_row.rb
2022-01-28 13:19:37 +01:00

45 lines
1.2 KiB
Ruby

class MyModuleRepositoryRow < ApplicationRecord
attr_accessor :last_modified_by
attr_accessor :comment
belongs_to :assigned_by,
foreign_key: 'assigned_by_id',
class_name: 'User',
optional: true
belongs_to :repository_row,
inverse_of: :my_module_repository_rows
belongs_to :my_module,
touch: true,
inverse_of: :my_module_repository_rows
belongs_to :repository_stock_unit_item, optional: true
validates :repository_row, uniqueness: { scope: :my_module }
around_save :deduct_stock_balance, if: :stock_consumption_changed?
before_save :nulify_stock_consumption, if: :stock_consumption_changed?
private
def nulify_stock_consumption
self.stock_consumption = nil if stock_consumption.zero?
end
def deduct_stock_balance
stock_value = repository_row.repository_stock_value
delta = stock_consumption.to_d - stock_consumption_was.to_d
stock_value.lock!
stock_value.amount = stock_value.amount - delta
yield
stock_value.save!
stock_value.repository_ledger_records.create!(
reference: self,
user: last_modified_by,
amount: delta,
balance: stock_value.amount,
comment: comment
)
save!
end
end