I'm trying to do something with orders, after the status has been changed.
I have the following code in place:
public class ApplicationStartup : ApplicationEventHandler
{
public ApplicationStartup()
{
NotificationCenter.Order.OrderStatusChanged += Order_OrderStatusChanged;
}
void Order_OrderStatusChanged(Order order)
{
// Get the member of this order and do stuff...
}
}
How do I get the associated member with this order?
Is this simply order.CustomerId? And does this represent the NodeID of the member?
Get Member by Order
I'm trying to do something with orders, after the status has been changed.
I have the following code in place:
How do I get the associated member with this order?
Is this simply order.CustomerId?
And does this represent the NodeID of the member?
Thanks in advance,
Kind regards,
Peter Rombouts
That is order.CustomerId. And that would be the id of the member (which is a node i think)
Kind regards
Anders
is working on a reply...