2022-08-19 19:59:13 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Provides methods for add order item to cart
|
|
|
|
class Cart::AddItemService
|
|
|
|
def call(order, orderable, quantity = 1)
|
|
|
|
return order if quantity.to_i.zero?
|
|
|
|
|
|
|
|
raise Cart::InactiveProductError unless orderable.is_active
|
|
|
|
|
2023-02-14 13:10:58 +01:00
|
|
|
order.created_at = Time.current if order.order_items.length.zero?
|
2022-10-04 17:42:32 +02:00
|
|
|
|
2022-09-14 09:26:29 +02:00
|
|
|
item = order.order_items.find_by(orderable: orderable)
|
|
|
|
quantity = orderable.quantity_min > quantity.to_i && item.nil? ? orderable.quantity_min : quantity.to_i
|
2022-09-13 16:36:44 +02:00
|
|
|
|
2022-08-19 19:59:13 +02:00
|
|
|
if item.nil?
|
2022-09-19 19:27:11 +02:00
|
|
|
item = order.order_items.new(quantity: quantity, orderable: orderable, amount: orderable.amount || 0)
|
2022-08-19 19:59:13 +02:00
|
|
|
else
|
2022-10-14 10:52:24 +02:00
|
|
|
item.quantity += quantity
|
2022-08-19 19:59:13 +02:00
|
|
|
end
|
2022-09-16 17:10:13 +02:00
|
|
|
raise Cart::OutStockError if item.quantity > orderable.stock['external']
|
|
|
|
|
2022-08-19 19:59:13 +02:00
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
item.save
|
2022-10-14 10:52:24 +02:00
|
|
|
Cart::UpdateTotalService.new.call(order)
|
2022-08-19 19:59:13 +02:00
|
|
|
order.save
|
|
|
|
end
|
|
|
|
order.reload
|
|
|
|
end
|
|
|
|
end
|