Class: Spree::Shipment
Defined Under Namespace
Classes: ManifestItem
Instance Attribute Summary collapse
Instance Method Summary
collapse
-
#add_shipping_method(shipping_method, selected = false) ⇒ Object
-
#after_cancel ⇒ Object
-
#after_resume ⇒ Object
-
#backordered? ⇒ Boolean
-
#currency ⇒ Object
TODO: delegate currency to Order, order.currency is mandatory.
-
#determine_state(order) ⇒ Object
Determines the appropriate state
according to the following logic:.
-
#discounted_cost ⇒ Object
(also: #discounted_amount)
-
#final_price ⇒ Object
-
#final_price_with_items ⇒ Object
-
#finalize! ⇒ Object
-
#free? ⇒ Boolean
-
#include?(variant) ⇒ Boolean
-
#inventory_units_for(variant) ⇒ Object
-
#inventory_units_for_item(line_item, variant = nil) ⇒ Object
-
#item_cost ⇒ Object
-
#line_items ⇒ Object
-
#manifest ⇒ Object
-
#process_order_payments ⇒ Object
-
#ready_or_pending? ⇒ Boolean
-
#refresh_rates(shipping_method_filter = ShippingMethod::DISPLAY_ON_FRONT_END) ⇒ Object
-
#selected_shipping_rate_id ⇒ Object
-
#selected_shipping_rate_id=(id) ⇒ Object
-
#set_up_inventory(state, variant, order, line_item, quantity = 1) ⇒ Object
-
#shipped=(value) ⇒ Object
-
#shipping_method ⇒ Object
-
#tax_category ⇒ Object
-
#tax_total ⇒ Object
Only one of either included_tax_total or additional_tax_total is set This method returns the total of the two.
-
#to_package ⇒ Object
-
#tracking_url ⇒ Object
-
#transfer_to_location(variant, quantity, stock_location) ⇒ Object
-
#transfer_to_shipment(variant, quantity, shipment_to_transfer_to) ⇒ Object
-
#update!(order) ⇒ Object
Updates various aspects of the Shipment while bypassing any callbacks.
-
#update_amounts ⇒ Object
-
#update_attributes_and_order(params = {}) ⇒ Object
Update Shipment and make sure Order states follow the shipment changes.
money_methods
#to_param
Methods inherited from Base
belongs_to_required_by_default, page, spree_base_scopes
#clear_preferences, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference
Instance Attribute Details
#special_instructions ⇒ Object
Returns the value of attribute special_instructions.
31
32
33
|
# File 'app/models/spree/shipment.rb', line 31
def special_instructions
@special_instructions
end
|
Instance Method Details
#add_shipping_method(shipping_method, selected = false) ⇒ Object
91
92
93
|
# File 'app/models/spree/shipment.rb', line 91
def add_shipping_method(shipping_method, selected = false)
shipping_rates.create(shipping_method: shipping_method, selected: selected, cost: cost)
end
|
#after_cancel ⇒ Object
95
96
97
|
# File 'app/models/spree/shipment.rb', line 95
def after_cancel
manifest.each { |item| manifest_restock(item) }
end
|
#after_resume ⇒ Object
99
100
101
|
# File 'app/models/spree/shipment.rb', line 99
def after_resume
manifest.each { |item| manifest_unstock(item) }
end
|
#backordered? ⇒ Boolean
103
104
105
|
# File 'app/models/spree/shipment.rb', line 103
def backordered?
inventory_units.any?(&:backordered?)
end
|
#currency ⇒ Object
TODO: delegate currency to Order, order.currency is mandatory
108
109
110
|
# File 'app/models/spree/shipment.rb', line 108
def currency
order ? order.currency : Spree::Config[:currency]
end
|
#determine_state(order) ⇒ Object
Determines the appropriate state
according to the following logic:
pending unless order is complete and order.payment_state
is paid
shipped if already shipped (ie. does not change the state) ready all other cases
117
118
119
120
121
122
123
124
|
# File 'app/models/spree/shipment.rb', line 117
def determine_state(order)
return 'canceled' if order.canceled?
return 'pending' unless order.can_ship?
return 'pending' if inventory_units.any? &:backordered?
return 'shipped' if shipped?
order.paid? || Spree::Config[:auto_capture_on_dispatch] ? 'ready' : 'pending'
end
|
#discounted_cost ⇒ Object
Also known as:
discounted_amount
126
127
128
|
# File 'app/models/spree/shipment.rb', line 126
def discounted_cost
cost + promo_total
end
|
#final_price ⇒ Object
131
132
133
|
# File 'app/models/spree/shipment.rb', line 131
def final_price
cost + adjustment_total
end
|
#final_price_with_items ⇒ Object
135
136
137
|
# File 'app/models/spree/shipment.rb', line 135
def final_price_with_items
item_cost + final_price
end
|
#finalize! ⇒ Object
145
146
147
148
|
# File 'app/models/spree/shipment.rb', line 145
def finalize!
inventory_units.finalize_units!
after_resume
end
|
#free? ⇒ Boolean
139
140
141
142
143
|
# File 'app/models/spree/shipment.rb', line 139
def free?
return true if final_price == BigDecimal(0)
adjustments.promotion.any? { |p| p.source.type == 'Spree::Promotion::Actions::FreeShipping' }
end
|
#include?(variant) ⇒ Boolean
150
151
152
|
# File 'app/models/spree/shipment.rb', line 150
def include?(variant)
inventory_units_for(variant).present?
end
|
#inventory_units_for(variant) ⇒ Object
154
155
156
|
# File 'app/models/spree/shipment.rb', line 154
def inventory_units_for(variant)
inventory_units.where(variant_id: variant.id)
end
|
#inventory_units_for_item(line_item, variant = nil) ⇒ Object
158
159
160
|
# File 'app/models/spree/shipment.rb', line 158
def inventory_units_for_item(line_item, variant = nil)
inventory_units.where(line_item_id: line_item.id, variant_id: line_item.variant_id || variant.id)
end
|
#item_cost ⇒ Object
162
163
164
|
# File 'app/models/spree/shipment.rb', line 162
def item_cost
manifest.map { |m| (m.line_item.price + (m.line_item.adjustment_total / m.line_item.quantity)) * m.quantity }.sum
end
|
#line_items ⇒ Object
166
167
168
|
# File 'app/models/spree/shipment.rb', line 166
def line_items
inventory_units.includes(:line_item).map(&:line_item).uniq
end
|
#manifest ⇒ Object
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
# File 'app/models/spree/shipment.rb', line 172
def manifest
inventory_units.group_by(&:variant_id).map do |_variant_id, units|
units.group_by(&:line_item_id).map do |_line_item_id, units|
states = {}
units.group_by(&:state).each { |state, iu| states[state] = iu.sum(&:quantity) }
line_item = units.first.line_item
variant = units.first.variant
ManifestItem.new(line_item, variant, units.sum(&:quantity), states)
end
end.flatten
end
|
#process_order_payments ⇒ Object
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
# File 'app/models/spree/shipment.rb', line 187
def process_order_payments
pending_payments = order.pending_payments.
sort_by(&:uncaptured_amount).reverse
shipment_to_pay = final_price_with_items
payments_amount = 0
payments_pool = pending_payments.each_with_object([]) do |payment, pool|
break if payments_amount >= shipment_to_pay
payments_amount += payment.uncaptured_amount
pool << payment
end
payments_pool.each do |payment|
capturable_amount = if payment.amount >= shipment_to_pay
shipment_to_pay
else
payment.amount
end
cents = (capturable_amount * 100).to_i
payment.capture!(cents)
shipment_to_pay -= capturable_amount
end
end
|
#ready_or_pending? ⇒ Boolean
214
215
216
|
# File 'app/models/spree/shipment.rb', line 214
def ready_or_pending?
ready? || pending?
end
|
#refresh_rates(shipping_method_filter = ShippingMethod::DISPLAY_ON_FRONT_END) ⇒ Object
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
# File 'app/models/spree/shipment.rb', line 218
def refresh_rates(shipping_method_filter = ShippingMethod::DISPLAY_ON_FRONT_END)
return shipping_rates if shipped?
return [] unless can_get_rates?
original_shipping_method_id = shipping_method.try(:id)
self.shipping_rates = Stock::Estimator.new(order).
shipping_rates(to_package, shipping_method_filter)
if shipping_method
selected_rate = shipping_rates.detect do |rate|
if original_shipping_method_id
rate.shipping_method_id == original_shipping_method_id
else
rate.selected
end
end
save!
self.selected_shipping_rate_id = selected_rate.id if selected_rate
reload
end
shipping_rates
end
|
#selected_shipping_rate_id ⇒ Object
244
245
246
|
# File 'app/models/spree/shipment.rb', line 244
def selected_shipping_rate_id
selected_shipping_rate.try(:id)
end
|
#selected_shipping_rate_id=(id) ⇒ Object
248
249
250
251
252
|
# File 'app/models/spree/shipment.rb', line 248
def selected_shipping_rate_id=(id)
shipping_rates.update_all(selected: false)
shipping_rates.update(id, selected: true)
save!
end
|
#set_up_inventory(state, variant, order, line_item, quantity = 1) ⇒ Object
254
255
256
257
258
259
260
261
262
263
264
|
# File 'app/models/spree/shipment.rb', line 254
def set_up_inventory(state, variant, order, line_item, quantity = 1)
return if quantity <= 0
inventory_units.create(
state: state,
variant_id: variant.id,
order_id: order.id,
line_item_id: line_item.id,
quantity: quantity
)
end
|
#shipped=(value) ⇒ Object
266
267
268
269
270
|
# File 'app/models/spree/shipment.rb', line 266
def shipped=(value)
return unless value == '1' && shipped_at.nil?
self.shipped_at = Time.current
end
|
#shipping_method ⇒ Object
272
273
274
|
# File 'app/models/spree/shipment.rb', line 272
def shipping_method
selected_shipping_rate&.shipping_method || shipping_rates.first&.shipping_method
end
|
#tax_category ⇒ Object
276
277
278
|
# File 'app/models/spree/shipment.rb', line 276
def tax_category
selected_shipping_rate.try(:tax_rate).try(:tax_category)
end
|
#tax_total ⇒ Object
Only one of either included_tax_total or additional_tax_total is set This method returns the total of the two. Saves having to check if tax is included or additional.
283
284
285
|
# File 'app/models/spree/shipment.rb', line 283
def tax_total
included_tax_total + additional_tax_total
end
|
#to_package ⇒ Object
287
288
289
290
291
292
293
|
# File 'app/models/spree/shipment.rb', line 287
def to_package
package = Stock::Package.new(stock_location)
inventory_units.includes(:variant).joins(:variant).group_by(&:state).each do |state, state_inventory_units|
package.add_multiple state_inventory_units, state.to_sym
end
package
end
|
#tracking_url ⇒ Object
295
296
297
|
# File 'app/models/spree/shipment.rb', line 295
def tracking_url
@tracking_url ||= shipping_method&.build_tracking_url(tracking)
end
|
#transfer_to_location(variant, quantity, stock_location) ⇒ Object
352
353
354
355
356
357
358
|
# File 'app/models/spree/shipment.rb', line 352
def transfer_to_location(variant, quantity, stock_location)
transfer_to_shipment(
variant,
quantity,
order.shipments.build(stock_location: stock_location)
)
end
|
#transfer_to_shipment(variant, quantity, shipment_to_transfer_to) ⇒ Object
360
361
362
363
364
365
366
367
368
369
|
# File 'app/models/spree/shipment.rb', line 360
def transfer_to_shipment(variant, quantity, shipment_to_transfer_to)
Spree::FulfilmentChanger.new(
current_stock_location: stock_location,
desired_stock_location: shipment_to_transfer_to.stock_location,
current_shipment: self,
desired_shipment: shipment_to_transfer_to,
variant: variant,
quantity: quantity
).run!
end
|
#update!(order) ⇒ Object
Updates various aspects of the Shipment while bypassing any callbacks. Note that this method takes an explicit reference to the Order object. This is necessary because the association actually has a stale (and unsaved) copy of the Order and so it will not yield the correct results.
342
343
344
345
346
347
348
349
350
|
# File 'app/models/spree/shipment.rb', line 342
def update!(order)
old_state = state
new_state = determine_state(order)
update_columns(
state: new_state,
updated_at: Time.current
)
after_ship if new_state == 'shipped' && old_state != 'shipped'
end
|
#update_amounts ⇒ Object
299
300
301
302
303
304
305
306
307
|
# File 'app/models/spree/shipment.rb', line 299
def update_amounts
if selected_shipping_rate
update_columns(
cost: selected_shipping_rate.cost,
adjustment_total: adjustments.additional.map(&:update!).compact.sum,
updated_at: Time.current
)
end
end
|
#update_attributes_and_order(params = {}) ⇒ Object
Update Shipment and make sure Order states follow the shipment changes
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
# File 'app/models/spree/shipment.rb', line 310
def update_attributes_and_order(params = {})
if update params
if params.key? :selected_shipping_rate_id
update_amounts
order.updater.update_shipment_total
order.updater.update_payment_state
update_columns(
state: determine_state(order),
updated_at: Time.current
)
order.updater.update_shipment_state
order.updater.persist_totals
end
true
end
end
|