Hi,
I'm trying to change the sequences from delivery orders, invoices, refunds . It's easy by the interface, but I need this changes in code for all my installations to have all the same sequence, and to avoid to configure everything in each installation and have the risk to forget of something.
For the example of account.invoice, I need to change the padding, and the prefix from :
<field name="prefix">SAJ/%(year)s/</field>
<field name="padding">4</field>
to :
<field name="prefix">SAJ/%(year)s</field>
<field name="padding">6</field>
The prefix without the last "/" and instead of "4" in padding have "6".
I want to do this configurations in my new module but I don't know how to change this to parameters from existing sequences?
Thanks in advance!