Class: Spree::OrdersController

Inherits:
StoreController show all
Defined in:
app/controllers/spree/orders_controller.rb

Instance Method Summary collapse

Methods inherited from StoreController

#cart_link, #forbidden, #unauthorized

Instance Method Details

#editObject

Shows the current incomplete order from the session



34
35
36
37
38
39
# File 'app/controllers/spree/orders_controller.rb', line 34

def edit
  @order = current_order || Order.incomplete.
                              includes(line_items: [variant: [:images, :option_values, :product]]).
                              find_or_initialize_by(guest_token: cookies.signed[:guest_token])
  associate_user
end

#emptyObject



77
78
79
80
81
82
83
# File 'app/controllers/spree/orders_controller.rb', line 77

def empty
  if @order = current_order
    @order.empty!
  end

  redirect_to spree.cart_path
end

#populateObject

Adds a new item to the order (creating a new order if none already exists)



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'app/controllers/spree/orders_controller.rb', line 42

def populate
  order    = current_order(create_order_if_necessary: true)
  variant  = Spree::Variant.find(params[:variant_id])
  quantity = params[:quantity].to_i
  options  = params[:options] || {}

  # 2,147,483,647 is crazy. See issue #2695.
  if quantity.between?(1, 2_147_483_647)
    begin
      order.contents.add(variant, quantity, options)
      order.update_line_item_prices!
      order.create_tax_charge!
      order.update_with_updater!
    rescue ActiveRecord::RecordInvalid => e
      error = e.record.errors.full_messages.join(", ")
    end
  else
    error = Spree.t(:please_enter_reasonable_quantity)
  end

  if error
    flash[:error] = error
    redirect_back_or_default(spree.root_path)
  else
    respond_with(order) do |format|
      format.html { redirect_to cart_path }
    end
  end
end

#populate_redirectObject



72
73
74
75
# File 'app/controllers/spree/orders_controller.rb', line 72

def populate_redirect
  flash[:error] = Spree.t(:populate_get_error)
  redirect_to cart_path
end

#showObject



12
13
14
# File 'app/controllers/spree/orders_controller.rb', line 12

def show
  @order = Order.includes(line_items: [variant: [:option_values, :images, :product]], bill_address: :state, ship_address: :state).find_by!(number: params[:id])
end

#updateObject



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'app/controllers/spree/orders_controller.rb', line 16

def update
  if @order.contents.update_cart(order_params)
    respond_with(@order) do |format|
      format.html do
        if params.has_key?(:checkout)
          @order.next if @order.cart?
          redirect_to checkout_state_path(@order.checkout_steps.first)
        else
          redirect_to cart_path
        end
      end
    end
  else
    respond_with(@order)
  end
end