Module: Spree::ShipmentHelper

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

Instance Method Summary collapse

Instance Method Details



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

def shipment_tracking_link_to(shipment:, name: nil, html_options: {})
  tracking_url = shipment.tracking_url.presence
  return '' unless tracking_url

  display_text = name || shipment.tracking.presence || tracking_url

  link_to display_text, tracking_url, html_options
end