mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 13:42:06 +00:00
16 lines
592 B
Python
16 lines
592 B
Python
# Copyright 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# 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_prepaid_revenue_account_id = fields.Many2one(
|
|
'account.account', string='Default Account for Prepaid Revenue',
|
|
domain=[('deprecated', '=', False)])
|
|
default_prepaid_expense_account_id = fields.Many2one(
|
|
'account.account', string='Default Account for Prepaid Expense',
|
|
domain=[('deprecated', '=', False)])
|