Class: Spree::Api::ShipmentsController
  
  
  
  Instance Attribute Summary
  
  
  #current_api_user
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  #content_type, #map_nested_attributes_keys, #permitted_line_item_attributes
  
  
  
  
  
  
  
  
  
  
  
  included
  
  
    Instance Method Details
    
      
  
  
    #add  ⇒ Object 
  
  
  
  
    | 
59
60
61
62
63
64
65 | # File 'app/controllers/spree/api/shipments_controller.rb', line 59
def add
  quantity = params[:quantity].to_i
  @shipment.order.contents.add(variant, quantity, {shipment: @shipment})
  respond_with(@shipment, default_template: :show)
end | 
 
    
      
  
  
    #create  ⇒ Object 
  
  
  
  
    | 
21
22
23
24
25
26
27
28
29
30
31
32 | # File 'app/controllers/spree/api/shipments_controller.rb', line 21
def create
  @order = Spree::Order.find_by!(number: params.fetch(:shipment).fetch(:order_id))
  authorize! :read, @order
  authorize! :create, Shipment
  quantity = params[:quantity].to_i
  @shipment = @order.shipments.create(stock_location_id: params.fetch(:stock_location_id))
  @order.contents.add(variant, quantity, {shipment: @shipment})
  @shipment.save!
  respond_with(@shipment.reload, default_template: :show)
end | 
 
    
      
  
  
    #mine  ⇒ Object 
  
  
  
  
    | 
8
9
10
11
12
13
14
15
16
17
18
19 | # File 'app/controllers/spree/api/shipments_controller.rb', line 8
def mine
  if current_api_user.persisted?
    @shipments = Spree::Shipment
      .reverse_chronological
      .joins(:order)
      .where(spree_orders: {user_id: current_api_user.id})
      .includes(mine_includes)
      .ransack(params[:q]).result.page(params[:page]).per(params[:per_page])
  else
    render "spree/api/errors/unauthorized", status: :unauthorized
  end
end | 
 
    
      
  
  
    #ready  ⇒ Object 
  
  
  
  
    | 
41
42
43
44
45
46
47
48
49
50 | # File 'app/controllers/spree/api/shipments_controller.rb', line 41
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 | # File 'app/controllers/spree/api/shipments_controller.rb', line 67
def remove
  quantity = params[:quantity].to_i
  @shipment.order.contents.remove(variant, quantity, {shipment: @shipment})
  @shipment.reload if @shipment.persisted?
  respond_with(@shipment, default_template: :show)
end | 
 
    
      
  
  
    #ship  ⇒ Object 
  
  
  
  
    | 
52
53
54
55
56
57 | # File 'app/controllers/spree/api/shipments_controller.rb', line 52
def ship
  unless @shipment.shipped?
    @shipment.ship!
  end
  respond_with(@shipment, default_template: :show)
end | 
 
    
      
  
  
    #transfer_to_location  ⇒ Object 
  
  
  
  
    | 
75
76
77
78
79 | # File 'app/controllers/spree/api/shipments_controller.rb', line 75
def transfer_to_location
  @stock_location = Spree::StockLocation.find(params[:stock_location_id])
  @original_shipment.transfer_to_location(@variant, @quantity, @stock_location)
  render json: {success: true, message: Spree.t(:shipment_transfer_success)}, status: 201
end | 
 
    
      
  
  
    #transfer_to_shipment  ⇒ Object 
  
  
  
  
    | 
81
82
83
84
85 | # File 'app/controllers/spree/api/shipments_controller.rb', line 81
def transfer_to_shipment
  @target_shipment  = Spree::Shipment.friendly.find(params[:target_shipment_number])
  @original_shipment.transfer_to_shipment(@variant, @quantity, @target_shipment)
  render json: {success: true, message: Spree.t(:shipment_transfer_success)}, status: 201
end | 
 
    
      
  
  
    #update  ⇒ Object 
  
  
  
  
    | 
34
35
36
37
38
39 | # File 'app/controllers/spree/api/shipments_controller.rb', line 34
def update
  @shipment = Spree::Shipment.accessible_by(current_ability, :update).readonly(false).friendly.find(params[:id])
  @shipment.update_attributes_and_order(shipment_params)
  respond_with(@shipment.reload, default_template: :show)
end |