How to Change Length of Order Increment ID in Magento 2

The default value of the Increment ID is 9 digits in Magento 2. Although the Magento 2 admin can customize the size of the order increment ID in the custom module. The order increment ID can be increased or decreased according to the requirement. The customized order increment ID will also be changed for shipment, invoice, and credit memos.

Steps to Change Length of Order Increment ID in Magento 2:

Step 1: Go to the below path

app\code\Vendor\Extension\etc\di.xml

And add the code as mentioned below

Step 2: Run the below command after adding the above code

Here the length of the Increment Id will be 7 digits. However, you can place any digit as per your requirement for a customized increment number. The length of increment changed here will be the same for the invoice, shipment, and credit memo.

 

Share