Class: Spree::Api::ShipmentsController
Instance Attribute Summary
#current_api_user
Instance Method Summary
collapse
#map_nested_attributes_keys, #permitted_line_item_attributes, #set_jsonp_format
included
Instance Method Details
#add ⇒ Object
58
59
60
61
62
63
64
65
|
# File 'app/controllers/spree/api/shipments_controller.rb', line 58
def add
variant = Spree::Variant.find(params[:variant_id])
quantity = params[:quantity].to_i
@order.contents.add(variant, quantity, nil, @shipment)
respond_with(@shipment, default_template: :show)
end
|
#create ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'app/controllers/spree/api/shipments_controller.rb', line 8
def create
authorize! :create, Shipment
variant = Spree::Variant.find(params[:variant_id])
quantity = params[:quantity].to_i
@shipment = @order.shipments.create(stock_location_id: params[:stock_location_id])
@order.contents.add(variant, quantity, nil, @shipment)
@shipment.refresh_rates
@shipment.save!
respond_with(@shipment.reload, default_template: :show)
end
|
#ready ⇒ Object
40
41
42
43
44
45
46
47
48
49
|
# File 'app/controllers/spree/api/shipments_controller.rb', line 40
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
|
#remove ⇒ Object
67
68
69
70
71
72
73
74
|
# File 'app/controllers/spree/api/shipments_controller.rb', line 67
def remove
variant = Spree::Variant.find(params[:variant_id])
quantity = params[:quantity].to_i
@order.contents.remove(variant, quantity, @shipment)
@shipment.reload if @shipment.persisted?
respond_with(@shipment, default_template: :show)
end
|
#ship ⇒ Object
51
52
53
54
55
56
|
# File 'app/controllers/spree/api/shipments_controller.rb', line 51
def ship
unless @shipment.shipped?
@shipment.ship!
end
respond_with(@shipment, default_template: :show)
end
|
#update ⇒ Object
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'app/controllers/spree/api/shipments_controller.rb', line 21
def update
@shipment = @order.shipments.accessible_by(current_ability, :update).find_by!(number: params[:id])
unlock = params[:shipment].delete(:unlock)
if unlock == 'yes'
@shipment.adjustment.open
end
@shipment.update_attributes(shipment_params)
if unlock == 'yes'
@shipment.adjustment.close
end
@shipment.reload
respond_with(@shipment, default_template: :show)
end
|