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)