Skip to content

Commit 1979e03

Browse files
committedSep 14, 2024
[IMP] l10n_nl_reports: tax closing rounding
Add the tax report integer rounding in the tax closing. Also, add the support to a `total` key in the `vat_results_summary` of `_vat_closing_entry_results_rounding`. That key is used when reports have a single line with the payable/reclaimable vat. task-3691312 closes odoo#171191 Related: odoo/enterprise#65736 Related: odoo/upgrade#6345 Signed-off-by: Olivier Colson (oco) <[email protected]>
1 parent bf73b63 commit 1979e03

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed
 

‎addons/l10n_nl/models/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
from . import template_nl
33
from . import account_journal
44
from . import account_chart_template
5+
from . import res_company

‎addons/l10n_nl/models/res_company.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
2+
3+
from odoo import fields, models
4+
5+
6+
class ResCompany(models.Model):
7+
_inherit = 'res.company'
8+
9+
l10n_nl_rounding_difference_loss_account_id = fields.Many2one('account.account', check_company=True)
10+
l10n_nl_rounding_difference_profit_account_id = fields.Many2one('account.account', check_company=True)

‎addons/l10n_nl/models/template_nl.py

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ def _get_nl_res_company(self):
3333
'expense_currency_exchange_account_id': '4920',
3434
'account_journal_early_pay_discount_loss_account_id': '7065',
3535
'account_journal_early_pay_discount_gain_account_id': '8065',
36+
'l10n_nl_rounding_difference_loss_account_id': '4960',
37+
'l10n_nl_rounding_difference_profit_account_id': '4950',
3638
'account_sale_tax_id': 'btw_21',
3739
'account_purchase_tax_id': 'btw_21_buy',
3840
},

0 commit comments

Comments
 (0)
Please sign in to comment.