2017-06-23 15:19:08 +02:00
|
|
|
class MyModuleRepositoryRow < ApplicationRecord
|
2022-04-15 11:40:47 +02:00
|
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
|
2022-05-18 17:02:12 +02:00
|
|
|
attribute :last_modified_by, :integer
|
|
|
|
attribute :comment, :text
|
2022-01-28 11:10:56 +01:00
|
|
|
|
2017-06-28 15:21:32 +02:00
|
|
|
belongs_to :assigned_by,
|
|
|
|
foreign_key: 'assigned_by_id',
|
|
|
|
class_name: 'User',
|
|
|
|
optional: true
|
2018-03-16 13:12:33 +01:00
|
|
|
belongs_to :repository_row,
|
2019-01-17 15:04:20 +01:00
|
|
|
inverse_of: :my_module_repository_rows
|
|
|
|
belongs_to :my_module,
|
2019-01-03 14:11:00 +01:00
|
|
|
touch: true,
|
2018-03-16 13:12:33 +01:00
|
|
|
inverse_of: :my_module_repository_rows
|
2022-01-25 17:48:45 +01:00
|
|
|
belongs_to :repository_stock_unit_item, optional: true
|
2017-06-06 17:35:29 +02:00
|
|
|
|
|
|
|
validates :repository_row, uniqueness: { scope: :my_module }
|
2022-01-12 17:13:50 +01:00
|
|
|
|
2022-04-13 11:11:07 +02:00
|
|
|
before_save :nulify_stock_consumption, if: :stock_consumption_changed?
|
2022-04-18 16:24:27 +02:00
|
|
|
around_save :deduct_stock_balance, if: :stock_consumption_changed?
|
2022-04-13 11:11:07 +02:00
|
|
|
|
2022-03-30 14:33:26 +02:00
|
|
|
def consume_stock(user, stock_consumption, comment = nil)
|
|
|
|
ActiveRecord::Base.transaction(requires_new: true) do
|
|
|
|
lock!
|
|
|
|
assign_attributes(
|
|
|
|
stock_consumption: stock_consumption,
|
|
|
|
repository_stock_unit_item_id:
|
|
|
|
repository_row.repository_stock_value.repository_stock_unit_item_id,
|
|
|
|
last_modified_by: user,
|
|
|
|
comment: comment
|
|
|
|
)
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-15 11:40:47 +02:00
|
|
|
def formated_stock_consumption
|
|
|
|
if stock_consumption
|
|
|
|
number_with_precision(
|
|
|
|
stock_consumption,
|
|
|
|
precision: (repository_row.repository.repository_stock_column.metadata['decimals'].to_i || 0),
|
|
|
|
strip_insignificant_zeros: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-12 17:13:50 +01:00
|
|
|
private
|
|
|
|
|
2022-01-28 11:10:56 +01:00
|
|
|
def nulify_stock_consumption
|
|
|
|
self.stock_consumption = nil if stock_consumption.zero?
|
|
|
|
end
|
|
|
|
|
2022-01-12 17:13:50 +01:00
|
|
|
def deduct_stock_balance
|
|
|
|
stock_value = repository_row.repository_stock_value
|
2022-04-13 11:11:07 +02:00
|
|
|
stock_value.lock!
|
2022-04-18 16:24:27 +02:00
|
|
|
delta = stock_consumption.to_d - stock_consumption_was.to_d
|
2022-01-12 17:13:50 +01:00
|
|
|
stock_value.amount = stock_value.amount - delta
|
|
|
|
yield
|
2022-01-28 11:10:56 +01:00
|
|
|
stock_value.repository_ledger_records.create!(
|
|
|
|
reference: self,
|
2022-04-18 16:24:27 +02:00
|
|
|
user: last_modified_by || assigned_by,
|
2022-01-28 11:10:56 +01:00
|
|
|
amount: delta,
|
|
|
|
balance: stock_value.amount,
|
|
|
|
comment: comment
|
|
|
|
)
|
2022-04-18 16:24:27 +02:00
|
|
|
stock_value.save!
|
2022-01-12 17:13:50 +01:00
|
|
|
save!
|
|
|
|
end
|
2017-06-06 17:35:29 +02:00
|
|
|
end
|