Files
account-financial-tools/account_permanent_lock_move/models/company.py
2016-10-17 09:35:52 +02:00

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"".")