Skip to content

Commit

Permalink
Merge pull request #1193 from indexa-git/14.0-fix-001-jc
Browse files Browse the repository at this point in the history
[14.0][FIX] l10n_do_accounting: fix sequence to change year
  • Loading branch information
fernando-pcg authored Dec 31, 2024
2 parents 17e6f61 + 4dfa502 commit 63e95bf
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": "14.0.2.19.5",
"version": "14.0.2.19.6",
# 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 @@ -1028,5 +1028,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 63e95bf

Please sign in to comment.