Old order back into the checkout

We have a scenario where a customer can initially place an order and then have the option to finalize it by re-entering it into the checkout for final adjustments.

Here’s our current process:

  1. When a customer places an order but doesn’t fully confirm it (i.e., saving it under “My Pages”), we use the following code:
var orderData = new PlaceOrderArgs()
{
    Comments = "Saved Order",
    Confirm = false
};

await cartContext.PlaceOrderAsync(orderData);
  1. To finalize the order later, we simply try to confirm it:
await cartContext.ConfirmOrderAsync();

However, I believe for this to work effectively, I need a method to reintroduce the original order into the checkout process. Currently, I’m looping through the order items and re-adding them to the cart with this approach:

foreach (var orderRow in order.Rows.Where(x => x.OrderRowType == OrderRowType.Product))
{
    await _cartContextService.AddToCart(new AddOrUpdateCartItemArgs
    {
        ArticleNumber = orderRow.ArticleNumber,
        Quantity = orderRow.Quantity,
        AdditionalInfo = AdditionalInfo,
    }, cartContext);
}

return Ok(_cartViewModelBuilder.Build(cartContext));

Is there a more streamlined method to place an entire sales order back into the checkout without having to loop through individual items? Any advice on how to handle this more efficiently would be greatly appreciated.

Have you looked at the accelerator code for my pages that adds an old order to the cart?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.