Remove prefix from Litium customer number

Is it possible to change and remove the prefix of the customer number sequence? For example, as default, customer number gets the term “LSC” added to the sequence number. In our case, we need a pure integer as customer number in order to integrate with an ERP system.

/micke
Litium version: 6.1

You can use any string as customer number (id)

var person = new Person(new Guid("5958fd72-c737-429b-9e4b-49f4ec1ba523"))
{
   Id = "MyCustomCustomerNumber1"
};
_personService.Create(person);
1 Like