Sha256: 0376294fae3b8995fb9e75792e6c5dc7612671ff075fd00f06dd1cf5eed92cde

Contents?: true

Size: 1.75 KB

Versions: 3

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

class Spree::Carton < Spree::Base
  belongs_to :address, class_name: 'Spree::Address', optional: true
  belongs_to :stock_location, class_name: 'Spree::StockLocation', inverse_of: :cartons, optional: true
  belongs_to :shipping_method, -> { with_discarded }, class_name: 'Spree::ShippingMethod', inverse_of: :cartons, optional: true

  has_many :inventory_units, class_name: "Spree::InventoryUnit", inverse_of: :carton, dependent: :nullify
  has_many :orders, -> { distinct }, through: :inventory_units
  has_many :shipments, -> { distinct }, through: :inventory_units

  validates :address, presence: true
  validates :stock_location, presence: true
  validates :shipping_method, presence: true
  validates :inventory_units, presence: true
  validates :shipped_at, presence: true

  make_permalink field: :number, length: 11, prefix: 'C'

  scope :trackable, -> { where("tracking IS NOT NULL AND tracking != ''") }
  # sort by most recent shipped_at, falling back to created_at. add "id desc" to make specs that involve this scope more deterministic.
  scope :reverse_chronological, -> { order(shipped_at: :desc, id: :desc) }

  def to_param
    number
  end

  def tracking_url
    @tracking_url ||= shipping_method.build_tracking_url(tracking)
  end

  def order_numbers
    orders.map(&:number)
  end

  def order_emails
    orders.map(&:email).uniq
  end

  def shipment_numbers
    shipments.map(&:number)
  end

  def display_shipped_at
    shipped_at.to_fs(:rfc822)
  end

  def manifest
    @manifest ||= Spree::ShippingManifest.new(inventory_units:).items
  end

  def manifest_for_order(order)
    Spree::ShippingManifest.new(inventory_units:).for_order(order).items
  end

  def any_exchanges?
    inventory_units.any?(&:original_return_item)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
solidus_core-4.4.2 app/models/spree/carton.rb
solidus_core-4.4.1 app/models/spree/carton.rb
solidus_core-4.4.0 app/models/spree/carton.rb