Class: Spree::Order

Inherits:
Base
  • Object
show all
Extended by:
FriendlyId, DisplayMoney
Includes:
Core::TokenGenerator, Checkout, CurrencyUpdater, Payments, StoreCredit
Defined in:
app/models/spree/order.rb,
app/models/spree/order/checkout.rb,
app/models/spree/order/payments.rb,
app/models/spree/order/store_credit.rb,
app/models/spree/order/currency_updater.rb

Defined Under Namespace

Modules: Checkout, CurrencyUpdater, Payments, StoreCredit

Constant Summary collapse

PAYMENT_STATES =
%w(balance_due credit_owed failed paid void)
SHIPMENT_STATES =
%w(backorder canceled partial pending ready shipped)
MONEY_THRESHOLD =
100_000_000
MONEY_VALIDATION =
{
  presence:     true,
  numericality: {
    greater_than: -MONEY_THRESHOLD,
    less_than:     MONEY_THRESHOLD,
    allow_blank:   true
  },
  format:       { with: /\A-?\d+(?:\.\d{1,2})?\z/, allow_blank: true }
}.freeze
POSITIVE_MONEY_VALIDATION =
MONEY_VALIDATION.deep_dup.tap do |validation|
  validation.fetch(:numericality)[:greater_than_or_equal_to] = 0
end.freeze
NEGATIVE_MONEY_VALIDATION =
MONEY_VALIDATION.deep_dup.tap do |validation|
  validation.fetch(:numericality)[:less_than_or_equal_to] = 0
end.freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

Methods included from Core::TokenGenerator

#generate_guest_token

Methods included from StoreCredit

#add_store_credit_payments, #could_use_store_credit?, #covered_by_store_credit?, #display_order_total_after_store_credit, #display_store_credit_remaining_after_capture, #display_total_applicable_store_credit, #display_total_applied_store_credit, #display_total_available_store_credit, #order_total_after_store_credit, #total_applicable_store_credit, #total_applied_store_credit, #total_available_store_credit, #using_store_credit?

Methods included from CurrencyUpdater

#price_from_line_item, #update_line_item_currencies!, #update_line_item_price!

Methods included from Checkout

included

Methods inherited from Base

page, spree_base_scopes

Methods included from Preferences::Preferable

#clear_preferences, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Instance Attribute Details

#coupon_codeObject

Returns the value of attribute coupon_code.



58
59
60
# File 'app/models/spree/order.rb', line 58

def coupon_code
  @coupon_code
end

#temporary_addressObject

Returns the value of attribute temporary_address.



59
60
61
# File 'app/models/spree/order.rb', line 59

def temporary_address
  @temporary_address
end

#temporary_credit_cardObject

Returns the value of attribute temporary_credit_card.



59
60
61
# File 'app/models/spree/order.rb', line 59

def temporary_credit_card
  @temporary_credit_card
end

#use_billingObject

Returns the value of attribute use_billing.



119
120
121
# File 'app/models/spree/order.rb', line 119

def use_billing
  @use_billing
end

Class Method Details

.register_line_item_comparison_hook(hook) ⇒ Object

Use this method in other gems that wish to register their own custom logic that should be called when determining if two line items are equal.



167
168
169
# File 'app/models/spree/order.rb', line 167

def self.register_line_item_comparison_hook(hook)
  self.line_item_comparison_hooks.add(hook)
end

.register_update_hook(hook) ⇒ Object

Use this method in other gems that wish to register their own custom logic that should be called after Order#update



161
162
163
# File 'app/models/spree/order.rb', line 161

def self.register_update_hook(hook)
  self.update_hooks.add(hook)
end

Instance Method Details

#all_inventory_units_returned?Boolean

Returns:

  • (Boolean)


262
263
264
# File 'app/models/spree/order.rb', line 262

def all_inventory_units_returned?
  inventory_units.all? { |inventory_unit| inventory_unit.returned? }
end

#allow_cancel?Boolean

Returns:

  • (Boolean)


257
258
259
260
# File 'app/models/spree/order.rb', line 257

def allow_cancel?
  return false if !completed? || canceled?
  shipment_state.nil? || %w{ready backorder pending}.include?(shipment_state)
end

#amountObject

For compatiblity with Calculator::PriceSack



172
173
174
# File 'app/models/spree/order.rb', line 172

def amount
  line_items.inject(0.0) { |sum, li| sum + li.amount }
end

#apply_free_shipping_promotionsObject



495
496
497
498
499
500
# File 'app/models/spree/order.rb', line 495

def apply_free_shipping_promotions
  Spree::PromotionHandler::FreeShipping.new(self).activate
  shipments.each { |shipment| Adjustable::AdjustmentsUpdater.update(shipment) }
  updater.update_shipment_total
  persist_totals
end

#approve!Object



579
580
581
# File 'app/models/spree/order.rb', line 579

def approve!
  update_column(:considered_risky, false)
end

#approved?Boolean

Returns:

  • (Boolean)


561
562
563
# File 'app/models/spree/order.rb', line 561

def approved?
  !!self.approved_at
end

#approved_by(user) ⇒ Object



551
552
553
554
555
556
557
558
559
# File 'app/models/spree/order.rb', line 551

def approved_by(user)
  self.transaction do
    approve!
    self.update_columns(
      approver_id: user.id,
      approved_at: Time.current,
    )
  end
end

#associate_user!(user, override_email = true) ⇒ Object

Associates the specified user with the order.



271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'app/models/spree/order.rb', line 271

def associate_user!(user, override_email = true)
  self.user           = user
  self.email          = user.email if override_email
  self.created_by   ||= user
  self.bill_address ||= user.bill_address.try(:clone)
  self.ship_address ||= user.ship_address.try(:clone)

  changes = slice(:user_id, :email, :created_by_id, :bill_address_id, :ship_address_id)

  # immediately persist the changes we just made, but don't use save
  # since we might have an invalid address associated
  self.class.unscoped.where(id: self).update_all(changes)
end

#available_payment_methodsObject



407
408
409
# File 'app/models/spree/order.rb', line 407

def available_payment_methods
  @available_payment_methods ||= PaymentMethod.available_on_front_end
end

#backordered?Boolean

Returns:

  • (Boolean)


216
217
218
# File 'app/models/spree/order.rb', line 216

def backordered?
  shipments.any?(&:backordered?)
end

#can_add_coupon?Boolean

Returns:

  • (Boolean)


480
481
482
# File 'app/models/spree/order.rb', line 480

def can_add_coupon?
  Spree::Promotion.order_activatable?(self)
end

#can_approve?Boolean

Returns:

  • (Boolean)


565
566
567
# File 'app/models/spree/order.rb', line 565

def can_approve?
  !approved?
end

#can_ship?Boolean

Returns:

  • (Boolean)


353
354
355
# File 'app/models/spree/order.rb', line 353

def can_ship?
  self.complete? || self.resumed? || self.awaiting_return? || self.returned?
end

#canceled_by(user) ⇒ Object



541
542
543
544
545
546
547
548
549
# File 'app/models/spree/order.rb', line 541

def canceled_by(user)
  self.transaction do
    cancel!
    self.update_columns(
      canceler_id: user.id,
      canceled_at: Time.current,
    )
  end
end

#checkout_allowed?Boolean

Indicates whether or not the user is allowed to proceed to checkout. Currently this is implemented as a check for whether or not there is at least one LineItem in the Order. Feel free to override this logic in your own application if you require additional steps before allowing a checkout.

Returns:

  • (Boolean)


197
198
199
# File 'app/models/spree/order.rb', line 197

def checkout_allowed?
  line_items.count > 0
end

#clone_billing_addressObject



248
249
250
251
252
253
254
255
# File 'app/models/spree/order.rb', line 248

def clone_billing_address
  if bill_address and self.ship_address.nil?
    self.ship_address = bill_address.clone
  else
    self.ship_address.attributes = bill_address.attributes.except('id', 'updated_at', 'created_at')
  end
  true
end

#completed?Boolean

Returns:

  • (Boolean)


189
190
191
# File 'app/models/spree/order.rb', line 189

def completed?
  completed_at.present?
end

#confirmation_required?Boolean

If true, causes the confirmation step to happen during the checkout process

Returns:

  • (Boolean)


207
208
209
210
211
212
213
214
# File 'app/models/spree/order.rb', line 207

def confirmation_required?
  Spree::Config[:always_include_confirm_step] ||
    payments.valid.map(&:payment_method).compact.any?(&:payment_profiles_supported?) ||
    # Little hacky fix for #4117
    # If this wasn't here, order would transition to address state on confirm failure
    # because there would be no valid payments any more.
    confirm?
end

#consider_riskObject



569
570
571
572
573
# File 'app/models/spree/order.rb', line 569

def consider_risk
  if is_risky? && !approved?
    considered_risky!
  end
end

#considered_risky!Object



575
576
577
# File 'app/models/spree/order.rb', line 575

def considered_risky!
  update_column(:considered_risky, true)
end

#contentsObject



266
267
268
# File 'app/models/spree/order.rb', line 266

def contents
  @contents ||= Spree::OrderContents.new(self)
end

#create_proposed_shipmentsObject



489
490
491
492
493
# File 'app/models/spree/order.rb', line 489

def create_proposed_shipments
  all_adjustments.shipping.delete_all
  shipments.destroy_all
  self.shipments = Spree::Stock::Coordinator.new(self).shipments
end

#create_tax_charge!Object

Creates new tax charges if there are any applicable rates. If prices already include taxes then price adjustments are created instead.



316
317
318
319
# File 'app/models/spree/order.rb', line 316

def create_tax_charge!
  Spree::TaxRate.adjust(self, line_items)
  Spree::TaxRate.adjust(self, shipments) if shipments.any?
end

#credit_cardsObject



357
358
359
360
# File 'app/models/spree/order.rb', line 357

def credit_cards
  credit_card_ids = payments.from_credit_card.pluck(:source_id).uniq
  CreditCard.where(id: credit_card_ids)
end

#currencyObject



181
182
183
# File 'app/models/spree/order.rb', line 181

def currency
  self[:currency] || Spree::Config[:currency]
end

#deliver_order_confirmation_emailObject



397
398
399
400
# File 'app/models/spree/order.rb', line 397

def deliver_order_confirmation_email
  OrderMailer.confirm_email(id).deliver_later
  update_column(:confirmation_delivered, true)
end

#empty!Object



438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
# File 'app/models/spree/order.rb', line 438

def empty!
  if completed?
    raise Spree.t(:cannot_empty_completed_order)
  else
    line_items.destroy_all
    updater.update_item_count
    adjustments.destroy_all
    shipments.destroy_all
    state_changes.destroy_all
    order_promotions.destroy_all

    update_totals
    persist_totals
    restart_checkout_flow
    self
  end
end

#ensure_line_item_variants_are_not_discontinuedObject

Check to see if any line item variants are discontinued. If so add error and restart checkout.



418
419
420
421
422
423
424
425
426
# File 'app/models/spree/order.rb', line 418

def ensure_line_item_variants_are_not_discontinued
  if line_items.any?{ |li| !li.variant || li.variant.discontinued? }
    restart_checkout_flow
    errors.add(:base, Spree.t(:discontinued_variants_present))
    false
  else
    true
  end
end

#ensure_line_items_are_in_stockObject



428
429
430
431
432
433
434
435
436
# File 'app/models/spree/order.rb', line 428

def ensure_line_items_are_in_stock
  if insufficient_stock_lines.present?
    restart_checkout_flow
    errors.add(:base, Spree.t(:insufficient_stock_lines_present))
    false
  else
    true
  end
end

#ensure_updated_shipmentsObject

Clean shipments and make order back to address state

At some point the might need to force the order to transition from address to delivery again so that proper updated shipments are created. e.g. customer goes back from payment step and changes order items



507
508
509
510
511
512
513
# File 'app/models/spree/order.rb', line 507

def ensure_updated_shipments
  if shipments.any? && !self.completed?
    self.shipments.destroy_all
    self.update_column(:shipment_total, 0)
    restart_checkout_flow
  end
end

#finalize!Object

Finalizes an in progress order after checkout is complete. Called after transition to complete state when payments will have been processed



369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'app/models/spree/order.rb', line 369

def finalize!
  # lock all adjustments (coupon promotions, etc.)
  all_adjustments.each{|a| a.close}

  # update payment and shipment(s) states, and save
  updater.update_payment_state
  shipments.each do |shipment|
    shipment.update!(self)
    shipment.finalize!
  end

  updater.update_shipment_state
  save!
  updater.run_hooks

  touch :completed_at

  deliver_order_confirmation_email unless confirmation_delivered?

  consider_risk
end

#find_line_item_by_variant(variant, options = {}) ⇒ Object



290
291
292
293
294
295
# File 'app/models/spree/order.rb', line 290

def find_line_item_by_variant(variant, options = {})
  line_items.detect { |line_item|
                line_item.variant_id == variant.id &&
                line_item_options_match(line_item, options)
              }
end

#fulfill!Object



391
392
393
394
395
# File 'app/models/spree/order.rb', line 391

def fulfill!
  shipments.each { |shipment| shipment.update!(self) if shipment.persisted? }
  updater.update_shipment_state
  save!
end

#fully_discounted?Boolean Also known as: fully_discounted

determines whether the inventory is fully discounted

Returns

  • true if inventory amount is the exact negative of inventory related adjustments

  • false otherwise

Returns:

  • (Boolean)


606
607
608
# File 'app/models/spree/order.rb', line 606

def fully_discounted?
  adjustment_total + line_items.map(&:final_amount).sum == 0.0
end

Returns:

  • (Boolean)


596
597
598
599
# File 'app/models/spree/order.rb', line 596

def has_non_reimbursement_related_refunds?
  refunds.non_reimbursement.exists? ||
    payments.offset_payment.exists? # how old versions of spree stored refunds
end

#has_step?(step) ⇒ Boolean

Returns:

  • (Boolean)


456
457
458
# File 'app/models/spree/order.rb', line 456

def has_step?(step)
  checkout_steps.include?(step)
end

#insufficient_stock_linesObject



411
412
413
# File 'app/models/spree/order.rb', line 411

def insufficient_stock_lines
  line_items.select(&:insufficient_stock?)
end

#is_risky?Boolean

Returns:

  • (Boolean)


537
538
539
# File 'app/models/spree/order.rb', line 537

def is_risky?
  payments.risky.size > 0
end

#line_item_options_match(line_item, options) ⇒ Object

This method enables extensions to participate in the “Are these line items equal” decision.

When adding to cart, an extension would send something like: params=…

and would provide:

def product_customizations_match



306
307
308
309
310
311
312
# File 'app/models/spree/order.rb', line 306

def line_item_options_match(line_item, options)
  return true unless options

  self.line_item_comparison_hooks.all? { |hook|
    self.send(hook, line_item, options)
  }
end

#mergerObject



244
245
246
# File 'app/models/spree/order.rb', line 244

def merger
  @merger ||= Spree::OrderMerger.new(self)
end

#nameObject



347
348
349
350
351
# File 'app/models/spree/order.rb', line 347

def name
  if (address = bill_address || ship_address)
    address.full_name
  end
end

#outstanding_balanceObject



328
329
330
331
332
333
334
335
336
337
338
339
340
341
# File 'app/models/spree/order.rb', line 328

def outstanding_balance
  if canceled?
    -1 * payment_total
  elsif reimbursements.includes(:refunds).size > 0
    reimbursed = reimbursements.includes(:refunds).inject(0) do |sum, reimbursement|
      sum + reimbursement.refunds.sum(:amount)
    end
    # If reimbursement has happened add it back to total to prevent balance_due payment state
    # See: https://github.com/spree/spree/issues/6229
    total - (payment_total + reimbursed)
  else
    total - payment_total
  end
end

#outstanding_balance?Boolean

Returns:

  • (Boolean)


343
344
345
# File 'app/models/spree/order.rb', line 343

def outstanding_balance?
  self.outstanding_balance != 0
end

#paid?Boolean

Helper methods for checkout steps

Returns:

  • (Boolean)


403
404
405
# File 'app/models/spree/order.rb', line 403

def paid?
  payment_state == 'paid' || payment_state == 'credit_owed'
end

#payment_required?Boolean

Is this a free order in which case the payment step should be skipped

Returns:

  • (Boolean)


202
203
204
# File 'app/models/spree/order.rb', line 202

def payment_required?
  total.to_f > 0.0
end

#payments_attributes=(attributes) ⇒ Object



611
612
613
614
# File 'app/models/spree/order.rb', line 611

def payments_attributes=(attributes)
  validate_payments_attributes(attributes)
  super(attributes)
end

#pre_tax_item_amountObject

Sum of all line item amounts pre-tax



177
178
179
# File 'app/models/spree/order.rb', line 177

def pre_tax_item_amount
  line_items.to_a.sum(&:pre_tax_amount)
end

#quantityObject



592
593
594
# File 'app/models/spree/order.rb', line 592

def quantity
  line_items.sum(:quantity)
end

#quantity_of(variant, options = {}) ⇒ Object



285
286
287
288
# File 'app/models/spree/order.rb', line 285

def quantity_of(variant, options = {})
  line_item = find_line_item_by_variant(variant, options)
  line_item ? line_item.quantity : 0
end

#refresh_shipment_rates(shipping_method_filter = ShippingMethod::DISPLAY_ON_FRONT_END) ⇒ Object



523
524
525
# File 'app/models/spree/order.rb', line 523

def refresh_shipment_rates(shipping_method_filter = ShippingMethod::DISPLAY_ON_FRONT_END)
  shipments.map { |s| s.refresh_rates(shipping_method_filter) }
end

#reload(options = nil) ⇒ Object



583
584
585
586
# File 'app/models/spree/order.rb', line 583

def reload(options=nil)
  remove_instance_variable(:@tax_zone) if defined?(@tax_zone)
  super
end

#restart_checkout_flowObject



515
516
517
518
519
520
521
# File 'app/models/spree/order.rb', line 515

def restart_checkout_flow
  self.update_columns(
    state: 'cart',
    updated_at: Time.current,
  )
  self.next! if self.line_items.size > 0
end

#set_shipments_costObject



531
532
533
534
535
# File 'app/models/spree/order.rb', line 531

def set_shipments_cost
  shipments.each(&:update_amounts)
  updater.update_shipment_total
  persist_totals
end

#shipped?Boolean

Returns:

  • (Boolean)


485
486
487
# File 'app/models/spree/order.rb', line 485

def shipped?
  %w(partial shipped).include?(shipment_state)
end

#shipping_discountObject



185
186
187
# File 'app/models/spree/order.rb', line 185

def shipping_discount
  shipment_adjustments.eligible.sum(:amount) * - 1
end

#shipping_eq_billing_address?Boolean

Returns:

  • (Boolean)


527
528
529
# File 'app/models/spree/order.rb', line 527

def shipping_eq_billing_address?
  (bill_address.empty? && ship_address.empty?) || bill_address.same_as?(ship_address)
end

#state_changed(name) ⇒ Object



460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
# File 'app/models/spree/order.rb', line 460

def state_changed(name)
  state = "#{name}_state"
  if persisted?
    old_state = self.send("#{state}_was")
    new_state = self.send(state)
    unless old_state == new_state
      self.state_changes.create(
        previous_state: old_state,
        next_state:     new_state,
        name:           name,
        user_id:        self.user_id
      )
    end
  end
end

#tax_addressObject

Returns the address for taxation based on configuration



227
228
229
# File 'app/models/spree/order.rb', line 227

def tax_address
  Spree::Config[:tax_using_ship_address] ? ship_address : bill_address
end

#tax_totalObject



588
589
590
# File 'app/models/spree/order.rb', line 588

def tax_total
  included_tax_total + additional_tax_total
end

#tax_zoneObject

Returns the relevant zone (if any) to be used for taxation purposes. Uses default tax zone unless there is a specific match



222
223
224
# File 'app/models/spree/order.rb', line 222

def tax_zone
  @tax_zone ||= Zone.match(tax_address) || Zone.default_tax
end

#update!Object



239
240
241
242
# File 'app/models/spree/order.rb', line 239

def update!
  warn "`update!` is deprecated as it conflicts with update! method of rails. Use `update_with_updater!` instead."
  update_with_updater!
end

#update_line_item_prices!Object



321
322
323
324
325
326
# File 'app/models/spree/order.rb', line 321

def update_line_item_prices!
  transaction do
    line_items.each(&:update_price)
    save!
  end
end

#update_with_updater!Object



235
236
237
# File 'app/models/spree/order.rb', line 235

def update_with_updater!
  updater.update
end

#updaterObject



231
232
233
# File 'app/models/spree/order.rb', line 231

def updater
  @updater ||= OrderUpdater.new(self)
end

#valid_credit_cardsObject



362
363
364
365
# File 'app/models/spree/order.rb', line 362

def valid_credit_cards
  credit_card_ids = payments.from_credit_card.valid.pluck(:source_id).uniq
  CreditCard.where(id: credit_card_ids)
end

#validate_payments_attributes(attributes) ⇒ Object



616
617
618
619
620
621
622
623
624
625
# File 'app/models/spree/order.rb', line 616

def validate_payments_attributes(attributes)
  # Ensure the payment methods specified are allowed for this user
  payment_methods = Spree::PaymentMethod.where(id: available_payment_methods.map(&:id))
  attributes.each do |payment_attributes|
    payment_method_id = payment_attributes[:payment_method_id]

    # raise RecordNotFound unless it is an allowed payment method
    payment_methods.find(payment_method_id) if payment_method_id
  end
end