Class: Spree::Order

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

Defined Under Namespace

Modules: Checkout, CurrencyUpdater, Payments Classes: CannotRebuildShipments, InsufficientStock

Constant Summary collapse

ORDER_NUMBER_LENGTH =
9
ORDER_NUMBER_LETTERS =
false
ORDER_NUMBER_PREFIX =
'R'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

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

Methods included from Preferences::Preferable

#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.



34
35
36
# File 'app/models/spree/order.rb', line 34

def coupon_code
  @coupon_code
end

#temporary_addressObject

Returns the value of attribute temporary_address.



35
36
37
# File 'app/models/spree/order.rb', line 35

def temporary_address
  @temporary_address
end

#temporary_credit_cardObject

Returns the value of attribute temporary_credit_card.



35
36
37
# File 'app/models/spree/order.rb', line 35

def temporary_credit_card
  @temporary_credit_card
end

#use_billingObject

Returns the value of attribute use_billing.



86
87
88
# File 'app/models/spree/order.rb', line 86

def use_billing
  @use_billing
end

Class Method Details

.by_customer(customer) ⇒ Object



121
122
123
# File 'app/models/spree/order.rb', line 121

def self.by_customer(customer)
  joins(:user).where("#{Spree.user_class.table_name}.email" => customer)
end

.by_number(number) ⇒ Object



108
109
110
# File 'app/models/spree/order.rb', line 108

def self.by_number(number)
  where(number: number)
end

.by_state(state) ⇒ Object



125
126
127
# File 'app/models/spree/order.rb', line 125

def self.by_state(state)
  where(state: state)
end

.completeObject



129
130
131
# File 'app/models/spree/order.rb', line 129

def self.complete
  where.not(completed_at: nil)
end

.incompleteObject



133
134
135
# File 'app/models/spree/order.rb', line 133

def self.incomplete
  where(completed_at: nil)
end

.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.



145
146
147
# File 'app/models/spree/order.rb', line 145

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



139
140
141
# File 'app/models/spree/order.rb', line 139

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

Instance Method Details

#add_store_credit_paymentsObject



643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
# File 'app/models/spree/order.rb', line 643

def add_store_credit_payments
  payments.store_credits.checkout.each(&:invalidate!)

  # this can happen when multiple payments are present, auto_capture is
  # turned off, and one of the payments fails when the user tries to
  # complete the order, which sends the order back to the 'payment' state.
  authorized_total = payments.pending.sum(:amount)

  remaining_total = outstanding_balance - authorized_total

  if user && user.store_credits.any?
    payment_method = Spree::PaymentMethod::StoreCredit.first

    user.store_credits.order_by_priority.each do |credit|
      break if remaining_total.zero?
      next if credit.amount_remaining.zero?

      amount_to_take = [credit.amount_remaining, remaining_total].min
      payments.create!(source: credit,
                       payment_method: payment_method,
                       amount: amount_to_take,
                       state: 'checkout',
                       response_code: credit.generate_authorization_code)
      remaining_total -= amount_to_take
    end
  end

  other_payments = payments.checkout.not_store_credits
  if remaining_total.zero?
    other_payments.each(&:invalidate!)
  elsif other_payments.size == 1
    other_payments.first.update_attributes!(amount: remaining_total)
  end

  payments.reset

  if payments.where(state: %w(checkout pending)).sum(:amount) != total
    errors.add(:base, Spree.t("store_credit.errors.unable_to_fund")) and return false
  end

end

#all_adjustmentsObject



149
150
151
152
# File 'app/models/spree/order.rb', line 149

def all_adjustments
  Adjustment.where("order_id = :order_id OR (adjustable_id = :order_id AND adjustable_type = 'Spree::Order')",
                   order_id: self.id)
end

#all_inventory_units_returned?Boolean

Returns:

  • (Boolean)


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

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

#allow_cancel?Boolean

Returns:

  • (Boolean)


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

def allow_cancel?
  return false unless completed? and state != 'canceled'
  shipment_state.nil? || %w{ready backorder pending}.include?(shipment_state)
end

#amountObject

For compatiblity with Calculator::PriceSack



155
156
157
# File 'app/models/spree/order.rb', line 155

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

#apply_free_shipping_promotionsObject



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

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

#approved?Boolean

Returns:

  • (Boolean)


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

def approved?
  !!self.approved_at
end

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

Associates the specified user with the order.



251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'app/models/spree/order.rb', line 251

def associate_user!(user, override_email = true)
  self.user = user
  attrs_to_set = { user_id: user.try(:id) }
  attrs_to_set[:email] = user.try(:email) if override_email
  attrs_to_set[:created_by_id] = user.try(:id) if self.created_by.blank?

  if persisted?
    # 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: id).update_all(attrs_to_set)
  end

  assign_attributes(attrs_to_set)
end

#available_payment_methodsObject



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

def available_payment_methods
  @available_payment_methods ||= (PaymentMethod.available(:front_end) + PaymentMethod.available(:both)).uniq
end

#backordered?Boolean

Returns:

  • (Boolean)


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

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

#billing_firstnameObject



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

def billing_firstname
  bill_address.try(:firstname)
end

#billing_lastnameObject



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

def billing_lastname
  bill_address.try(:lastname)
end

#can_add_coupon?Boolean

Returns:

  • (Boolean)


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

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

#can_approve?Boolean

Returns:

  • (Boolean)


586
587
588
# File 'app/models/spree/order.rb', line 586

def can_approve?
  !approved?
end

#can_ship?Boolean

Returns:

  • (Boolean)


350
351
352
# File 'app/models/spree/order.rb', line 350

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

#canceled_by(user) ⇒ Object



572
573
574
575
576
577
578
579
580
# File 'app/models/spree/order.rb', line 572

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

#cancellationsObject



246
247
248
# File 'app/models/spree/order.rb', line 246

def cancellations
  @cancellations ||= Spree::OrderCancellations.new(self)
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)


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

def checkout_allowed?
  line_items.count > 0
end

#clone_billing_addressObject



220
221
222
223
224
225
226
227
# File 'app/models/spree/order.rb', line 220

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

#completed?Boolean

Returns:

  • (Boolean)


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

def completed?
  completed_at.present?
end

#confirmation_required?Boolean

Returns:

  • (Boolean)


193
194
195
# File 'app/models/spree/order.rb', line 193

def confirmation_required?
  true
end

#contains?(variant, options = {}) ⇒ Boolean

Returns:

  • (Boolean)


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

def contains?(variant, options = {})
  find_line_item_by_variant(variant, options).present?
end

#contentsObject



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

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

#covered_by_store_credit?Boolean Also known as: covered_by_store_credit

Returns:

  • (Boolean)


685
686
687
688
# File 'app/models/spree/order.rb', line 685

def covered_by_store_credit?
  return false unless user
  user.total_available_store_credit >= total
end

#create_proposed_shipmentsObject



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

def create_proposed_shipments
  if completed?
    raise CannotRebuildShipments.new(Spree.t(:cannot_rebuild_shipments_order_completed))
  elsif shipments.any? { |s| !s.pending? }
    raise CannotRebuildShipments.new(Spree.t(:cannot_rebuild_shipments_shipments_not_pending))
  else
    adjustments.shipping.destroy_all
    shipments.destroy_all
    self.shipments = Spree::Stock::Coordinator.new(self).shipments
  end
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.



325
326
327
328
329
330
# File 'app/models/spree/order.rb', line 325

def create_tax_charge!
  # We want to only look up the applicable tax zone once and pass it to TaxRate calculation to avoid duplicated lookups.
  order_tax_zone = self.tax_zone
  Spree::TaxRate.adjust(order_tax_zone, line_items)
  Spree::TaxRate.adjust(order_tax_zone, shipments) if shipments.any?
end

#credit_cardsObject



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

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

#currencyObject



164
165
166
# File 'app/models/spree/order.rb', line 164

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

#deliver_order_confirmation_emailObject



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

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

#display_store_credit_remaining_after_captureObject



712
713
714
# File 'app/models/spree/order.rb', line 712

def display_store_credit_remaining_after_capture
  Spree::Money.new(total_available_store_credit - total_applicable_store_credit, { currency: currency })
end

#display_total_applicable_store_creditObject



708
709
710
# File 'app/models/spree/order.rb', line 708

def display_total_applicable_store_credit
  Spree::Money.new(-total_applicable_store_credit, { currency: currency })
end

#empty!Object



462
463
464
465
466
467
468
469
470
# File 'app/models/spree/order.rb', line 462

def empty!
  line_items.destroy_all
  updater.update_item_count
  adjustments.destroy_all
  shipments.destroy_all

  update_totals
  persist_totals
end

#ensure_line_item_variants_are_not_deletedObject

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



421
422
423
424
425
426
427
428
429
# File 'app/models/spree/order.rb', line 421

def ensure_line_item_variants_are_not_deleted
  if line_items.any? { |li| li.variant.paranoia_destroyed? }
    errors.add(:base, Spree.t(:deleted_variants_present))
    restart_checkout_flow
    false
  else
    true
  end
end

#ensure_shipping_addressObject



505
506
507
508
509
# File 'app/models/spree/order.rb', line 505

def ensure_shipping_address
  unless ship_address && ship_address.valid?
    errors.add(:base, Spree.t(:ship_address_required)) and return false
  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



535
536
537
538
539
540
541
542
# File 'app/models/spree/order.rb', line 535

def ensure_updated_shipments
  if !completed? && shipments.all?(&:pending?)
    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



366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# File 'app/models/spree/order.rb', line 366

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?
end

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



299
300
301
302
303
304
# File 'app/models/spree/order.rb', line 299

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



386
387
388
389
390
# File 'app/models/spree/order.rb', line 386

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

Returns:

  • (Boolean)


622
623
624
# File 'app/models/spree/order.rb', line 622

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

#generate_order_number(options = {}) ⇒ Object



265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# File 'app/models/spree/order.rb', line 265

def generate_order_number(options = {})
  options[:length]  ||= ORDER_NUMBER_LENGTH
  options[:letters] ||= ORDER_NUMBER_LETTERS
  options[:prefix]  ||= ORDER_NUMBER_PREFIX

  possible = (0..9).to_a
  possible += ('A'..'Z').to_a if options[:letters]

  self.number ||= loop do
    # Make a random number.
    random = "#{options[:prefix]}#{(0...options[:length]).map { possible.shuffle.first }.join}"
    # Use the random  number if no other order exists with it.
    if self.class.exists?(number: random)
      # If over half of all possible options are taken add another digit.
      options[:length] += 1 if self.class.count > (10 ** options[:length] / 2)
    else
      break random
    end
  end
end

Returns:

  • (Boolean)


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

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)


472
473
474
# File 'app/models/spree/order.rb', line 472

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

#insufficient_stock_linesObject



414
415
416
# File 'app/models/spree/order.rb', line 414

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

#is_risky?Boolean

Returns:

  • (Boolean)


568
569
570
# File 'app/models/spree/order.rb', line 568

def is_risky?
  self.payments.risky.count > 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



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

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

#merge!(order, user = nil) ⇒ Object



431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
# File 'app/models/spree/order.rb', line 431

def merge!(order, user = nil)
  order.line_items.each do |other_order_line_item|
    next unless other_order_line_item.currency == currency

    # Compare the line items of the other order with mine.
    # Make sure you allow any extensions to chime in on whether or
    # not the extension-specific parts of the line item match
    current_line_item = self.line_items.detect { |my_li|
                  my_li.variant == other_order_line_item.variant &&
                  self.line_item_comparison_hooks.all? { |hook|
                    self.send(hook, my_li, other_order_line_item.serializable_hash)
                  }
                }
    if current_line_item
      current_line_item.quantity += other_order_line_item.quantity
      current_line_item.save!
    else
      other_order_line_item.order_id = self.id
      other_order_line_item.save!
    end
  end

  self.associate_user!(user) if !self.user && !user.blank?

  updater.update

  # So that the destroy doesn't take out line items which may have been re-assigned
  order.line_items.reload
  order.destroy
end

#nameObject



344
345
346
347
348
# File 'app/models/spree/order.rb', line 344

def name
  if (address = bill_address || ship_address)
    "#{address.firstname} #{address.lastname}"
  end
end

#order_total_after_store_creditObject



696
697
698
# File 'app/models/spree/order.rb', line 696

def order_total_after_store_credit
  total - total_applicable_store_credit
end

#outstanding_balanceObject



332
333
334
335
336
337
338
# File 'app/models/spree/order.rb', line 332

def outstanding_balance
  if state == 'canceled'
    -1 * payment_total
  else
    total - payment_total
  end
end

#outstanding_balance?Boolean

Returns:

  • (Boolean)


340
341
342
# File 'app/models/spree/order.rb', line 340

def outstanding_balance?
  self.outstanding_balance != 0
end

#paid?Boolean

Helper methods for checkout steps

Returns:

  • (Boolean)


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

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)


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

def payment_required?
  total.to_f > 0.0
end

#pre_tax_item_amountObject

Sum of all line item amounts pre-tax



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

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

#quantityObject



608
609
610
# File 'app/models/spree/order.rb', line 608

def quantity
  line_items.sum(:quantity)
end

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



294
295
296
297
# File 'app/models/spree/order.rb', line 294

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

#refresh_shipment_ratesObject



554
555
556
# File 'app/models/spree/order.rb', line 554

def refresh_shipment_rates
  shipments.map(&:refresh_rates)
end

#reload(options = nil) ⇒ Object



603
604
605
606
# File 'app/models/spree/order.rb', line 603

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

#restart_checkout_flowObject



544
545
546
547
548
549
550
551
552
# File 'app/models/spree/order.rb', line 544

def restart_checkout_flow
  return if self.state == 'cart'

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

#set_shipments_costObject



562
563
564
565
566
# File 'app/models/spree/order.rb', line 562

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

#shipped?Boolean

Returns:

  • (Boolean)


501
502
503
# File 'app/models/spree/order.rb', line 501

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

#shipped_shipmentsObject



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

def shipped_shipments
  shipments.shipped
end

#shippingObject



242
243
244
# File 'app/models/spree/order.rb', line 242

def shipping
  @shipping ||= Spree::OrderShipping.new(self)
end

#shipping_discountObject



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

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

#shipping_eq_billing_address?Boolean

Returns:

  • (Boolean)


558
559
560
# File 'app/models/spree/order.rb', line 558

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

#state_changed(name) ⇒ Object



476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
# File 'app/models/spree/order.rb', line 476

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



208
209
210
# File 'app/models/spree/order.rb', line 208

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

#tax_totalObject



639
640
641
# File 'app/models/spree/order.rb', line 639

def tax_total
  additional_tax_total + included_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



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

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

#to_paramObject



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

def to_param
  number.to_s.to_url.upcase
end

#tokenObject



617
618
619
620
# File 'app/models/spree/order.rb', line 617

def token
  ActiveSupport::Deprecation.warn("Spree::Order#token is DEPRECATED, please use #guest_token instead.", caller)
  guest_token
end

#total_applicable_store_creditObject



700
701
702
703
704
705
706
# File 'app/models/spree/order.rb', line 700

def total_applicable_store_credit
  if confirm? || complete?
    payments.store_credits.valid.sum(:amount)
  else
    [total, (user.try(:total_available_store_credit) || 0.0)].min
  end
end

#total_available_store_creditObject



691
692
693
694
# File 'app/models/spree/order.rb', line 691

def total_available_store_credit
  return 0.0 unless user
  user.total_available_store_credit
end

#unreturned_exchange?Boolean

Returns:

  • (Boolean)


627
628
629
630
631
632
633
634
635
636
637
# File 'app/models/spree/order.rb', line 627

def unreturned_exchange?
  # created_at - 1 is a hack to ensure that this doesn't blow up on MySQL,
  # records loaded from the DB on MySQL will have a precision of 1 second,
  # but records in memory may still have miliseconds on them, causing this
  # to be true where it shouldn't be.
  #
  # FIXME: find a better way to determine if an order is an unreturned
  # exchange
  shipment = self.shipments.first
  shipment.present? ? (shipment.created_at < self.created_at - 1) : false
end

#update!Object



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

def update!
  updater.update
end

#update_line_items(line_item_params) ⇒ Object

moved from api order_decorator. This is a better place for it.



591
592
593
594
595
596
597
598
599
600
601
# File 'app/models/spree/order.rb', line 591

def update_line_items(line_item_params)
  return if line_item_params.blank?
  line_item_params.each_value do |attributes|
    if attributes[:id].present?
      self.line_items.find(attributes[:id]).update_attributes!(attributes)
    else
      self.line_items.create!(attributes)
    end
  end
  self.ensure_updated_shipments
end

#updaterObject



212
213
214
# File 'app/models/spree/order.rb', line 212

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

#valid_credit_cardsObject



359
360
361
362
# File 'app/models/spree/order.rb', line 359

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