Module: Spree::ShipmentHelperDecorator

Defined in:
app/helpers/spree/shipment_helper_decorator.rb

Instance Method Summary collapse

Instance Method Details

#tracking_url_for_shipment(shipment) ⇒ Object



3
4
5
6
7
8
9
10
11
# File 'app/helpers/spree/shipment_helper_decorator.rb', line 3

def tracking_url_for_shipment(shipment)
  if shipment.tracking&.match?(/\Ahttps?:\/\//)
    shipment.tracking
  elsif shipment.shipping_method&.tracking_url.present?
    shipment.tracking_url
  else
    nil
  end
end