Class: Spree::Api::ShipmentsController

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

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#map_nested_attributes_keys, #permitted_line_item_attributes, #set_jsonp_format

Methods included from ControllerSetup

included

Instance Method Details

#addObject



45
46
47
48
49
50
51
# File 'app/controllers/spree/api/shipments_controller.rb', line 45

def add
  quantity = params[:quantity].to_i

  @shipment.order.contents.add(variant, quantity, nil, @shipment)

  respond_with(@shipment, default_template: :show)
end

#createObject



7
8
9
10
11
12
13
14
15
16
17
18
# File 'app/controllers/spree/api/shipments_controller.rb', line 7

def create
  @order = Spree::Order.find_by!(number: params[:shipment][:order_id])
  authorize! :read, @order
  authorize! :create, Shipment
  quantity = params[:quantity].to_i
  @shipment = @order.shipments.create(stock_location_id: params[:stock_location_id])
  @order.contents.add(variant, quantity, nil, @shipment)

  @shipment.save!

  respond_with(@shipment.reload, default_template: :show)
end

#readyObject



27
28
29
30
31
32
33
34
35
36
# File 'app/controllers/spree/api/shipments_controller.rb', line 27

def ready
  unless @shipment.ready?
    if @shipment.can_ready?
      @shipment.ready!
    else
      render 'spree/api/shipments/cannot_ready_shipment', status: 422 and return
    end
  end
  respond_with(@shipment, default_template: :show)
end

#removeObject



53
54
55
56
57
58
59
# File 'app/controllers/spree/api/shipments_controller.rb', line 53

def remove
  quantity = params[:quantity].to_i

  @shipment.order.contents.remove(variant, quantity, @shipment)
  @shipment.reload if @shipment.persisted?
  respond_with(@shipment, default_template: :show)
end

#shipObject



38
39
40
41
42
43
# File 'app/controllers/spree/api/shipments_controller.rb', line 38

def ship
  unless @shipment.shipped?
    @shipment.ship!
  end
  respond_with(@shipment, default_template: :show)
end

#updateObject



20
21
22
23
24
25
# File 'app/controllers/spree/api/shipments_controller.rb', line 20

def update
  @shipment = Spree::Shipment.accessible_by(current_ability, :update).readonly(false).find_by!(number: params[:id])
  @shipment.update_attributes_and_order(shipment_params)

  respond_with(@shipment.reload, default_template: :show)
end