Module: Spree::ShipmentHelper
- Defined in:
- app/helpers/spree/shipment_helper.rb
Instance Method Summary collapse
Instance Method Details
#shipment_tracking_link_to(shipment:, name: nil, html_options: {}) ⇒ Object
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, end |