Sha256: 6603693127813bc9b7e9f77b6818b1994564f8a672d90733d1356ed443b18c45

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

# This represents an inventory unit that has been canceled from an order after it has already been completed
# The reason specifies why it was canceled.
# This class should encapsulate logic related to canceling inventory after order complete
class Spree::UnitCancel < Spree::Base
  SHORT_SHIP = 'Short Ship'
  DEFAULT_REASON = 'Cancel'

  belongs_to :inventory_unit
  has_one :adjustment, as: :source, dependent: :destroy

  validates :inventory_unit, presence: true

  # Creates necessary cancel adjustments for the line item.
  def adjust!
    raise "Adjustment is already created" if adjustment

    amount = compute_amount(inventory_unit.line_item)

    self.adjustment = inventory_unit.line_item.adjustments.create!(
      source: self,
      amount: amount,
      order: inventory_unit.order,
      label: "#{I18n.t('spree.cancellation')} - #{reason}",
      eligible: true,
      finalized: true
    )

    inventory_unit.line_item.order.recalculate
    adjustment
  end

  # This method is used by Adjustment#update to recalculate the cost.
  def compute_amount(line_item)
    raise "Adjustable does not match line item" unless line_item == inventory_unit.line_item
    -(line_item.total.to_d / line_item.inventory_units.not_canceled.reject(&:original_return_item ).size)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
solidus_core-2.8.6 app/models/spree/unit_cancel.rb
solidus_core-2.8.5 app/models/spree/unit_cancel.rb
solidus_core-2.8.4 app/models/spree/unit_cancel.rb
solidus_core-2.8.3 app/models/spree/unit_cancel.rb
solidus_core-2.8.2 app/models/spree/unit_cancel.rb
solidus_core-2.8.1 app/models/spree/unit_cancel.rb
solidus_core-2.8.0 app/models/spree/unit_cancel.rb