Number Options

Configuration of number options for assigning IDs to entities.

Overview

Number option settings determine how new IDs are assigned to entities such as customers, orders, carts, etc. Each number option is associated with a specific number type. The first defined configuration for a number type will be used when creating new IDs.

For example, when a new customer is created, Omnium will search for the first available "CustomerNumberOptions" on the selected market. If none are found, it will fall back to the first "CustomerNumberOptions" defined in the generic number options section of the configuration file. If no option is defined there, the system defaults to "GuidNumberService."


Number Option Model

The table below outlines the properties of a number option:

PropertyTypeDescriptionNotes
NumberTypestringSpecifies the number type (e.g., SupplierNumberOptions, CustomerNumberOptions).Required
KeystringUnique key for the incrementing value (e.g., OrderNumber, CustomerNumber).Required
StartSequenceintThe starting point for the new number series.Optional
PrefixstringA prefix to be added to the number (e.g., "C-" for "C-1", "C-2").Optional
ServicestringThe number service used (e.g., "SequentialNumberService", "GuidNumberService").Required
TranslateKeystringKey for translating the number option name.Optional
ValidationRegexstringRegex pattern for validating the ID.Optional
IsReadOnlyboolIf true, the number is non-editable in the GUI.Optional
IsAutoCreateDisabledboolIf true, automatic number assignment is disabled in the GUI (allowing manual entry).Optional

Number Types

Number types are used to distinguish between different entity types. Below are the most common number types:

public const string SupplierNumberOptions = "SupplierNumberOptions";
public const string DeliveryNumberOptions = "DeliveryNumberOptions";
public const string PurchaseOrderNumberOptions = "PurchaseOrderNumberOptions";
public const string OrderNumberOptions = "OrderNumberOptions";
public const string CustomerNumberOptions = "CustomerNumberOptions";
public const string CartNumberOptions = "CartNumberOptions";
public const string ReturnNumberOptions = "ReturnNumberOptions";
public const string RmaNumberOptions = "RmaNumberOptions";
public const string ProjectNumberOptions = "ProjectNumberOptions";
public const string PickListNumberOptions = "PickListNumberOptions";

On this page