Class: Spree::CheckoutController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/checkout_controller.rb

Overview

Handles checkout logic. This is somewhat contrary to standard REST convention since there is not actually a Checkout object. There’s enough distinct logic specific to checkout which has nothing to do with updating an order that this approach is waranted.

Instance Attribute Summary

Attributes included from Spree::Core::ControllerHelpers

#title

Instance Method Summary collapse

Methods included from Spree::Core::ControllerHelpers

#access_forbidden, included

Instance Method Details

#updateObject

Updates the order and advances to the next state (when possible.)



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'app/controllers/spree/checkout_controller.rb', line 14

def update
  if @order.update_attributes(object_params)
    fire_event('spree.checkout.update')

    if @order.next
      state_callback(:after)
    else
      flash[:error] = t(:payment_processing_failed)
      respond_with(@order, :location => checkout_state_path(@order.state))
      return
    end

    if @order.state == "complete" || @order.completed?
      flash.notice = t(:order_processed_successfully)
      flash[:commerce_tracking] = "nothing special"
      respond_with(@order, :location => completion_route)
    else
      respond_with(@order, :location => checkout_state_path(@order.state))
    end
  else
    respond_with(@order) { |format| format.html { render :edit } }
  end
end