mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 13:42:06 +00:00
24 lines
780 B
Python
24 lines
780 B
Python
# Copyright 2013-2021 Akretion (http://www.akretion.com)
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class AccountTax(models.Model):
|
|
_inherit = "account.tax"
|
|
|
|
account_accrued_revenue_id = fields.Many2one(
|
|
comodel_name="account.account",
|
|
string="Accrued Revenue Tax Account",
|
|
domain="[('deprecated', '=', False), ('company_id', '=', company_id)]",
|
|
check_company=True,
|
|
)
|
|
account_accrued_expense_id = fields.Many2one(
|
|
comodel_name="account.account",
|
|
string="Accrued Expense Tax Account",
|
|
domain="[('deprecated', '=', False), ('company_id', '=', company_id)]",
|
|
check_company=True,
|
|
)
|