Skip to content

Commit

Permalink
[FIX] l10n_do_accounting: fix sequence to change year
Browse files Browse the repository at this point in the history
  • Loading branch information
jorge-pcg committed Dec 31, 2024
1 parent 940875a commit 02d873f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion l10n_do_accounting/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"category": "Localization",
"license": "LGPL-3",
"website": "https://github.com/odoo-dominicana",
"version": "17.0.1.0.3",
"version": "17.0.1.0.4",
"countries": ["do"],
# any module necessary for this one to work correctly
"depends": ["l10n_latam_invoice_document", "l10n_do"],
Expand Down
3 changes: 1 addition & 2 deletions l10n_do_accounting/models/account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -882,5 +882,4 @@ def _deduce_sequence_number_reset(self, name):
elif self._context.get("is_l10n_do_seq", False):
return "never"
else:
"never"
return super(AccountMove, self)._deduce_sequence_number_reset(name)
return super(AccountMove, self)._deduce_sequence_number_reset(name)

0 comments on commit 02d873f

Please sign in to comment.