How to change the invoice number starting point

Note: this is for Simple Invoices 2010.2 and above

Say you want the have the invoice number start at 1000 instead of 1

Open phpMyAdmin, go to your Simple Invoices database, then find the si_index table. Then click browse, the data should look something like

idnodesub_nodesub_node2domain_id
1 invoice 1 1

edit this row and change it to below

idnodesub_nodesub_node2domain_id
999 invoice 1 1

or just execute the below SQL

DELETE FROM `si_index`;
INSERT INTO `si_index` VALUES('999','invoice','1',' ','1');

refer:

  • Bookmark "wiki:how_to_change_the_invoice_number_starting_point" at del.icio.us
  • Bookmark "wiki:how_to_change_the_invoice_number_starting_point" at Digg
  • Bookmark "wiki:how_to_change_the_invoice_number_starting_point" at Reddit
  • Bookmark "wiki:how_to_change_the_invoice_number_starting_point" at StumbleUpon
  • Bookmark "wiki:how_to_change_the_invoice_number_starting_point" at Facebook
  • Bookmark "wiki:how_to_change_the_invoice_number_starting_point" at Twitter
 
 | wiki/how_to_change_the_invoice_number_starting_point.txt · Last modified: 2011/12/22 12:09 (external edit)