mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
22 lines
621 B
Ruby
22 lines
621 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Provides methods for refresh amount of order item
|
|
class Cart::RefreshItemService
|
|
def call(order, orderable)
|
|
raise Cart::InactiveProductError unless orderable.is_active
|
|
|
|
item = order.order_items.find_by(orderable: orderable)
|
|
|
|
raise ActiveRecord::RecordNotFound if item.nil?
|
|
|
|
order.total -= (item.amount * item.quantity.to_i) unless item.is_offered
|
|
item.amount = orderable.amount || 0
|
|
order.total += (item.amount * item.quantity.to_i) unless item.is_offered
|
|
ActiveRecord::Base.transaction do
|
|
item.save
|
|
order.save
|
|
end
|
|
order.reload
|
|
end
|
|
end
|