London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Hi all,
please help me to get on from this. I have requirement to add Payment from cart to Purchase order.
For this I tried as below
var purchaseOrder = _orderRepository.Load(orderRef);
var cartPayment = cart.GetFirstForm().Payments.FirstOrDefault();
var POPayment = purchaseOrder.GetFirstForm().Payments.FirstOrDefault();
In both case its getting exception as " Value cannot be null".
Help me to achieve the same.
Thank You!!