Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I'm in this context at I need to output the Vouchercode if any used on the order, where can I find it?
IEnumerable<PurchaseOrder> orders = new List<PurchaseOrder>();orders = PurchaseOrder.Find(x => x.OrderStatus.OrderStatusId == orderStatus);foreach (var order in orders){ //order.? foreach (var orderline in order.OrderLines) { //orderline.? }}
public static IEnumerable<string> GetVouchers(this PurchaseOrder purchaseOrder) { var vouchers = purchaseOrder.OrderProperties.FirstOrDefault(x => x.Key == "voucherCodes"); if (vouchers == null) { return null; } else { return vouchers.Value.Split(new[]{','}, StringSplitOptions.RemoveEmptyEntries); } }
I have this extension lying around - hope its what you are looking for :)
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Voucher code fra order
I'm in this context at I need to output the Vouchercode if any used on the order, where can I find it?
I have this extension lying around - hope its what you are looking for :)
is working on a reply...