Manual Cart

Hi Matt,

Thanks so much for the manual cart, looks to be a really good feature, couple of questions for you.

When I try and add a product to a cart, no results are displayed, searching for a sku also returns no results, not sure if this is another issue I have with the update or a bug - try.vendr.net was not working when I tried so unable to validate it.

Is there a way to manually finalize a cart? The client I am working with at the moment use session carts and do not use Umbraco members so they would only want to create a cart as a ‘manual order’ which they would probably take payment over the phone - is this possible, if not let me know and I’ll add it as a feature request for consideration.

Many thanks,

J


This is a companion discussion topic for the original entry at https://our.umbraco.com/forum/108298-manual-cart

Hi Matt,

I am using Umbraco Commerce 13 and I am having a similar issue where the order didn’t get finalised and is left in the cart. Is there a way we can finalise the cart manually?

Thanks

Not 100% sure as I can’t test it in v13 but wouldn’t something like this work? Replace the guid with a transaction id if you have one?

order.Finalize(order.TotalPrice.Value, Guid.NewGuid().ToString(), PaymentStatus.Authorized);
_umbracoCommerceApi.SaveOrder(order);