Don't miss out Virtual Happy Hour today (April 26).

Try our conversational search powered by Generative AI!

Customising or Seeding Order Numbers

Vote:
 

Hi

Is there a documented way to customise or seed order numbers in the newer Order system?

I found this example - https://www.patrickvankleef.com/2017/05/22/episerver-commerce-generating-an-order-number/ - which looks pretty good, but surprised this isn't documented by Epi?

The older approach is still documented but as legacy: https://world.episerver.com/documentation/developer-guides/commerce/orders/order-management/Changing-order-number-sequence/ 

In our case, we might only need to override the seed for the starting order number so not sure if it is necessary to build a custom IOrderNumberGenerator? Can anyone advise the recommended way on Epi 11/12?

We're on CMS v11 with Commerce v11.

Thanks, Matt.

#194814
Jul 04, 2018 1:42
Vote:
 

Yes even if you just want to change the seed number you would still have to implement that interface and register it. I think Patrik showed good samples, but in your case you probably just need the simplest one.

#194823
Jul 04, 2018 8:20
Vote:
 

Cool, just checking I was on the right track. Here's what I wrote in the end (in case it helps anyone):

[ServiceConfiguration(typeof(IOrderNumberGenerator))]
public class CustomOrderNumberGenerator : IOrderNumberGenerator
{
    private readonly int BaseOrderNumberSeed = GetBaseOrderNumberSeedFromConfig();

    private static int GetBaseOrderNumberSeedFromConfig()
    {
        var configValue = ConfigurationManager.AppSettings["BaseOrderNumberSeed"];

        if (string.IsNullOrEmpty(configValue) || !int.TryParse(configValue, out int baseOrderNumberSeed) || baseOrderNumberSeed < 0)
        {
            return 1000000;
        }

        return baseOrderNumberSeed;
    }

    /// <summary>
    /// This custom implementation will take the internal OrderGroupId and pad it with
    /// a random number of two digits (between 10 - 99) on the end. These are then added
    /// onto a base number (to avoid overlap with legacy system order refs).
    /// Typically this will be a base number of 1,000,000 - so, for example, and order
    /// with OrderGroupId 123 will get an OrderNumber like 1012353 (where the random padding
    /// is 53).
    /// </summary>
    /// <param name="orderGroup"></param>
    /// <returns></returns>
    public string GenerateOrderNumber(IOrderGroup orderGroup)
    {
        var internalOrderId = orderGroup.OrderLink.OrderGroupId;

        var randomNum = (new Random()).Next(10, 99);

        var orderIdWithRandomNumPadding = internalOrderId * 100 + randomNum;

        var orderNumber = BaseOrderNumberSeed + orderIdWithRandomNumPadding;

        return orderNumber.ToString();
    }
}

Note the summary comment for what I am trying to achieve :)

#194824
Jul 04, 2018 8:24
Vote:
 

Looks good, but remember that the default implementation is also registered by ServiceConfiguration. To make sure yours is used instead of the default one, you should register yours in an initialization module that depends on Commerce InitializationModule. Wrote about this in details in my 2nd book :)

#194825
Jul 04, 2018 8:27
Vote:
 

Are you meaning that because I'm using the [ServiceConfiguration] attribute that mine might happen to early? So I should move this to an initialization module dependant on Commerce to ensure my registration happens after?

So far testing my code works, but perhaps there's a race condition risk here?

#194826
Jul 04, 2018 8:31
Vote:
 

Yes. It is working by pure luck.

#194827
Jul 04, 2018 8:35
Vote:
 

Thanks for the pointer, have changed this (and a few others) to configure in the initialization module after Commerce. We never had any issues mind you, but better safe than sorry :)

#194869
Jul 05, 2018 8:07
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.