mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 13:42:06 +00:00
12 lines
304 B
Python
12 lines
304 B
Python
# Copyright 2013-2016 Akretion
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
from flectra import models, fields
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
default_cutoff_journal_id = fields.Many2one(
|
|
'account.journal', string='Default Cut-off Journal')
|