Try our conversational search powered by Generative AI!

Is it possible use RunWorkflow on Serializable Carts?

Vote:
 

I just enabled the serializable carts mode for our recently upgraded commerce 13.30 solution (upgraded from commerce 11). However, I am getting the error "System.InvalidCastException: 'Unable to cast object of type 'EPiServer.Commerce.Order.Internal.SerializableCart' to type 'Mediachase.Commerce.Orders.OrderGroup'.'" right before we attept to run the workflow. This makes sense but I'm am unsure on how to fix this issue. I have not been able to find any documention about this. This worked fine before switching to serializable carts.

Is it possible use RunWorkflow on Serializable Carts? Do workflows work with serializeable carts? Do I need to cast this to some other type or use a different approach?

public static WorkflowResults RunWorkflowExtended(this IOrderGroup orderGroup, string workflowName, Dictionary<string, object> param = null)
        {
            var OrderGroup = (OrderGroup)orderGroup;
            if (orderGroup == null)
            {
                return new WorkflowResults(null, WorkflowStatus.Aborted, new ArgumentNullException(nameof(orderGroup)));
            }

            if (string.IsNullOrWhiteSpace(workflowName))
            {
                return new WorkflowResults(null, WorkflowStatus.Aborted, new ArgumentNullException(nameof(workflowName)));
            }
            if (string.Equals(orderGroup.Name, Cart.WishListName, StringComparison.OrdinalIgnoreCase))
            {
                return new WorkflowResults(null, WorkflowStatus.Aborted, new ArgumentException(nameof(workflowName)));
            }

            OrderGroup.ProviderId = "frontend";

            var workflowResults = param != null ? OrderGroup.RunWorkflow(workflowName, false, param) : OrderGroup.RunWorkflow(workflowName, false);
            if (workflowResults.Exception != null)
            {
                var workflowWarnings = OrderGroupWorkflowManager.GetWarningsFromWorkflowResult(workflowResults);

                Logger.Error(string.Join(Environment.NewLine, workflowWarnings), workflowResults.Exception);
            }

            ServiceLocator.Current.GetInstance<IOrderRepository>().Save(orderGroup);

            return workflowResults;
        }
#255901
Jun 01, 2021 16:04
Vote:
 

Looking in to the implementation and docs https://world.episerver.com/csclasslibraries/commerce/Mediachase.Commerce.Orders.Managers.OrderGroupWorkflowManager?version=10 this only seems to be supported on OrderGroup which is the old non serialized cart. If you change it to IOrderGroup which you should always use there's no support for RunWorkflow.

Quan did say here https://world.episerver.com/forum/developer-forum/Episerver-Commerce/Thread-Container/2018/7/how-to-run-workflow-for-icart/ you don't need to run workflows on 11+ so it may be redundant now.

#255902
Edited, Jun 01, 2021 17:07
agibbles - Jun 01, 2021 18:06
What should I be using instead of workflows? Is there something new that replaced them?
Vote:
 

In the link Scott posted https://world.episerver.com/forum/developer-forum/Commerce/Thread-Container/2018/7/how-to-run-workflow-for-icart/#195426

You can also look into OrderValidationService, it validates the carts (and you can customize what validations you want) 

#255948
Jun 02, 2021 7:59
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.