I want to re-numbering of invoices. The renumbering should be composed as follow.
I would like this format for invoice ID's: INV-10001-2014
INV-00001-13; INV-00002-13; O-00003-13; ['INV' for invoice, 5 places for the number; “-“ ; current year. Next year this numbering should finish in 14 (from 2014).
You can customize order/invoice/creditmemo/shipment number (increment_id) by editing the following Class :
Especially, closely look at the code of the following methods:
getNextId() , getPrefix() , getPadLength() , format($id)
Now, you won't find the method definition for methods getPrefix() , getPadLength() because these are magic getter methods. You can define these methods according to your desire.
For an example:
This way, you don't have to manually change anything in the database structures for this to achieve.
Hope this will help you.