-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] l10n_ee: add taxes with the new VAT rate
The VAT rate is increasing from 20% to 22% from January 1st, 2024. We need to keep both 20% and 22% taxes until the end 2025 for phasing out period. 20% taxes will be inactive for new customers. task-3615036 closes odoo#147105 X-original-commit: 4893fa1 Related: odoo/enterprise#53193 Signed-off-by: Josse Colpaert <[email protected]> Signed-off-by: Aliya Tastemirova (alta) <[email protected]>
- Loading branch information
aliya
committed
Dec 21, 2023
1 parent
7c567cc
commit 836fa62
Showing
8 changed files
with
117 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
"id","name","country_id","tax_receivable_account_id","tax_payable_account_id","name@et" | ||
"tax_group_vat_20","VAT 20%","base.ee","l10n_ee_201200","l10n_ee_201200","KM 20%" | ||
"tax_group_vat_22","VAT 22%","base.ee","l10n_ee_201200","l10n_ee_201200","KM 22%" | ||
"tax_group_vat_9","VAT 9%","base.ee","l10n_ee_201200","l10n_ee_201200","KM 9%" | ||
"tax_group_vat_5","VAT 5%","base.ee","l10n_ee_201200","l10n_ee_201200","KM 5%" | ||
"tax_group_vat_0","VAT 0%","base.ee","l10n_ee_201200","l10n_ee_201200","KM 0%" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. | ||
from odoo import api, SUPERUSER_ID | ||
|
||
def migrate(cr, version): | ||
env = api.Environment(cr, SUPERUSER_ID, {}) | ||
for company in env['res.company'].search([('chart_template', '=', 'ee')]): | ||
env['account.chart.template'].try_loading('ee', company) |