You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm accumulating user data as it comes from forms, incrementally building the customer and shipping address using order.setCustomer(data) and order.setShippingAddress(data).
To obtain previous values, order.getCustomer() and order.getShippingAddress() would be helpful. Currently, the fix is to use order.get('customer') and order.get('shipping_address') .
The text was updated successfully, but these errors were encountered:
I'm accumulating user data as it comes from forms, incrementally building the customer and shipping address using
order.setCustomer(data)
andorder.setShippingAddress(data)
.To obtain previous values,
order.getCustomer()
andorder.getShippingAddress()
would be helpful. Currently, the fix is to useorder.get('customer')
andorder.get('shipping_address')
.The text was updated successfully, but these errors were encountered: