Skip to content

Instantly share code, notes, and snippets.

@anthonygharvey
Last active July 28, 2019 17:41
Show Gist options
  • Save anthonygharvey/40dba56ec06fb302747a40a8d6282e2c to your computer and use it in GitHub Desktop.
Save anthonygharvey/40dba56ec06fb302747a40a8d6282e2c to your computer and use it in GitHub Desktop.
def print_shipping_label2(order)
return nil if order.outstanding_payments?
return order.send_address_reminder if order.address_incomplete?
return order.print_standard_shipping_label if order.standard_shipping?
order.print_priority_shipping_label
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment