Commit Graph

5 Commits

Author SHA1 Message Date
Rodrigo
d4f2629b08 [FIX] account_move_name_sequence: With the "account_move_name_sequence" module the "_get_last_sequence" method does not have to propagate the with_prefix parameter. The sequence_prefix parameter will not be completed and will give error as it is False in this line of code. https://github.com/OCA/OCB/blob/15.0/addons/account/models/sequence_mixin.py#L164 2023-01-24 17:14:30 +01:00
Pierre Verkest
d0525798f0 [FIX] account_move_name_sequence: Use account move date to compute prefix
In case you want name your invoice YYYY-MM-SEQ (ie: 2022-07-00001)
where:
 * YYYY: is the account move year
 * MM: is the account move month
 * SEQ: is a numerical sequence that is continue along the fiscal year
   assuming fiscal year is over two years (ie: from july to june next year)

Before this commit the sequence prefix use now() to be compute but the
range is selected with the account move date.

This commit make consistency computing prefix with the account
move date as well.

So account move manage the first janunary for the last day of
the previous year will properly use the account move date.

Co-authored-by: Alexis de Lattre <alexis.delattre@akretion.com>
2022-07-09 16:22:39 +02:00
Francisco Javier Luna Vazquez
e55ff74217 [FIX] account_move_name_sequence: Exclude no_gap sequences from _is_end_of_seq_chain 2022-05-26 16:30:39 -05:00
Alexis de Lattre
bee5d4c8b5 sequence is now required on journals
Add post-install script to create a sequence for all existing journals
Update README accordingly
2022-05-26 15:31:08 -05:00
Alexis de Lattre
89ab5bbae5 Add module account_move_name_sequence
This module restores the good old behavior where journal entry numbers
were generated from a sequence configured on the journal.
2022-05-26 15:31:08 -05:00