Categories

Magento- Changing invoice #’s

When moving to Magento, some people might want to change the default order number 000000001 to some other number – either fooling the customer into thinking this is a very popular shop, or when migrating from another web shop to Magento. Here’s how to change that order number. if updating a store that already has sales to a new increment id: UPDATE eav_entity_store SET increment_last_id = 012345678, increment_prefix = 0 WHERE entity_type_id = 5; If updating a clean store with no sales: INSERT INTO eav_entity_store SET increment_last_id = 012345678, increment_prefix = 0, entity_type_id = 5;