Skip to content

Instantly share code, notes, and snippets.

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