How do I customise the starting number for orders, invoices etc in Magento 1.5?
|
feedback
|
|
There is a table in the database which stored increment id of order. It is called “eav_entity_store” table. You can check which entity type id belongs to which entity by looking at eav_entity_type table. You can run following query to update last increment id for the order.
Hope That HelpsWith a tool like phpmyadmin look at your database. In the table eav_entity_type you will find all entity types listed. The one of interest to change where the order number starts is order sales/order. Remember the entity_type_id (in my install it is 11). To remove the leading zeros (padding) set increment_pad_length to 1. | |||
|
feedback
|
|
Actually with the newer versions (and probably in 1.5 as well), there is an easier way to change it. In PHPMyAdmin, or your mysql client, go to the Then you don't have to rewrite core code - a win-win. JMax | |||
|
feedback
|
|
Magento Order No
| ||||
|
feedback
|