Skip to content

Commit

Permalink
Merge pull request #1194 from indexa-git/16.0-fix-001-jc
Browse files Browse the repository at this point in the history
[16.0][FIX] l10n_do_accounting: fix sequence to change year
  • Loading branch information
fernando-pcg authored Dec 31, 2024
2 parents 48c6ae5 + bfd1243 commit ea1b1d3
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": "16.0.1.5.10",
"version": "16.0.1.5.11",
# any module necessary for this one to work correctly
"depends": ["l10n_latam_invoice_document", "l10n_do"],
# always loaded
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 @@ -886,5 +886,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 ea1b1d3

Please sign in to comment.