mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
14 lines
461 B
Python
14 lines
461 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2016 Camptocamp SA (Matthieu Dietrich)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
permanent_lock_date = fields.Date(
|
|
string="Permanent Lock Date",
|
|
help="Non-revertible closing of accounts prior to and inclusive of "
|
|
"this date. Use it for fiscal year locking instead of ""Lock Date"".")
|