Michael Nielsen
Michael Nielsen
### Issue description The environment is shown as green in the list, but is red on the project page https://prnt.sc/lm4WPHFLAoHe
I get these errors in the log ``` An error occured whilst fetching the exchange rate for order "3b7bcff7-5582-4fdf-ab62-018f3359192d" System.NullReferenceException: Object reference not set to an instance of an object....
When doing something like this ``` var testVariationContextBefore = _variationContextAccessor.VariationContext?.Culture; _umbracoCommerceApi.Uow.Execute(uow => { var order = _umbracoCommerceApi.GetCurrentOrder(storeId) .AsWritable(uow); //Finalize order order.InitializeTransaction(); order.Finalize(order.TotalPrice, Guid.NewGuid().ToString("N"), PaymentStatus.Authorized); _umbracoCommerceApi.SaveOrder(order); uow.Complete(); }); var testVariationContextAfter =...
When doing something like this ``` var order = _umbracoCommerceApi.GetCurrentOrder(storeId) .AsWritable(uow); //Finalize order order.InitializeTransaction(); order.Finalize(order.TotalPrice, Guid.NewGuid().ToString("N"), PaymentStatus.Authorized); _umbracoCommerceApi.SaveOrder(order); ``` The order will recieve a status of 'Error' instead of 'New'....
When having a lot of data, the cart and orderlist in the backend becomes increasingly slow or break. Here is an example when going to view the cart list, it...
Whenever a client goes to the payment gateway, a new orderNumber is generated. This can cause issues, where clients pay on the "wrong" orderNumber, and will give the same transationId...
If you turn on "Allow vary by culture" on the Store Picker, you'll get the yellow box with the message: > Unable to locate an associated Store for this product....
The variant editor is great for quickly creating variants. It would be nice to be able to choose if it should be able to create multi-variants or not. That way,...