1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/services/cart/set_quantity_service.rb
2023-02-15 10:29:53 +01:00

24 lines
712 B
Ruby

# frozen_string_literal: true
# Provides methods for update quantity of order item
class Cart::SetQuantityService
def call(order, orderable, quantity = nil)
return order if quantity.to_i.zero?
quantity = orderable.quantity_min > quantity.to_i ? orderable.quantity_min : quantity.to_i
raise Cart::OutStockError if quantity.to_i > orderable.stock['external']
item = order.order_items.find_by(orderable_type: orderable.class.name, orderable_id: orderable.id)
raise ActiveRecord::RecordNotFound if item.nil?
ActiveRecord::Base.transaction do
item.update(quantity: quantity.to_i)
Cart::UpdateTotalService.new.call(order)
order.save
end
order.reload
end
end