From d4945d20ee7bdd9ab62ff5baba6a29b225602bcf Mon Sep 17 00:00:00 2001 From: git_admin Date: Tue, 28 Apr 2026 07:34:13 +0000 Subject: [PATCH] Tower: upload at_accounting 18.0.1.7 (via marketplace) --- addons/at_accounting/wizard/fiscal_year.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 addons/at_accounting/wizard/fiscal_year.py diff --git a/addons/at_accounting/wizard/fiscal_year.py b/addons/at_accounting/wizard/fiscal_year.py new file mode 100644 index 0000000..922ca9e --- /dev/null +++ b/addons/at_accounting/wizard/fiscal_year.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from datetime import date + +from odoo import _, api, fields, models + + +class FinancialYearOpeningWizard(models.TransientModel): + _inherit = 'account.financial.year.op' + _description = 'Opening Balance of Financial Year' + + account_tax_periodicity = fields.Selection(related='company_id.account_tax_periodicity', string='Periodicity in month', readonly=False, required=True) + account_tax_periodicity_reminder_day = fields.Integer(related='company_id.account_tax_periodicity_reminder_day', string='Reminder', readonly=False, required=True) + account_tax_periodicity_journal_id = fields.Many2one(related='company_id.account_tax_periodicity_journal_id', string='Journal', readonly=False)