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

Instance Method Details

#addObject



63
64
65
66
67
68
# File 'app/controllers/spree/api/shipments_controller.rb', line 63

def add
  quantity = params[:quantity].to_i

  @shipment.order.contents.add(variant, quantity, { shipment: @shipment })
  respond_with(@shipment, default_template: :show)
end

#createObject



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

def create
  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

#mineObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'app/controllers/spree/api/shipments_controller.rb', line 10

def mine
  if current_api_user
    @shipments = Spree::Shipment
      .reverse_chronological
      .joins(:order)
      .where(spree_orders: { user_id: current_api_user.id })
      .includes(mine_includes)
      .ransack(params[:q]).result

    @shipments = paginate(@shipments)
  else
    render "spree/api/errors/unauthorized", status: :unauthorized
  end
end

#readyObject



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

def ready
  unless @shipment.ready?
    if @shipment.can_ready?
      @shipment.ready!
    else
      logger.error("cannot_ready_shipment shipment_state=#{@shipment.state}")
      render('spree/api/shipments/cannot_ready_shipment', status: 422) && return
    end
  end
  respond_with(@shipment, default_template: :show)
end

#removeObject



70
71
72
73
74
75
76
77
78
79
80
81
# File 'app/controllers/spree/api/shipments_controller.rb', line 70

def remove
  quantity = params[:quantity].to_i

  if @shipment.pending?
    @shipment.order.contents.remove(variant, quantity, { shipment: @shipment })
    @shipment.reload if @shipment.persisted?
    respond_with(@shipment, default_template: :show)
  else
    @shipment.errors.add(:base, :cannot_remove_items_shipment_state, state: @shipment.state)
    invalid_resource!(@shipment)
  end
end

#shipObject



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

def ship
  authorize! :ship, @shipment
  unless @shipment.shipped?
    @shipment.suppress_mailer = (params[:send_mailer] == 'false')
    @shipment.ship!
  end
  respond_with(@shipment, default_template: :show)
end

#transfer_to_locationObject



83
84
85
86
87
# File 'app/controllers/spree/api/shipments_controller.rb', line 83

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_shipmentObject



89
90
91
92
93
# File 'app/controllers/spree/api/shipments_controller.rb', line 89

def transfer_to_shipment
  @target_shipment = Spree::Shipment.find_by!(number: 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

#updateObject



36
37
38
39
40
# File 'app/controllers/spree/api/shipments_controller.rb', line 36

def update
  @shipment.update_attributes_and_order(shipment_params)

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