mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 13:42:06 +00:00
21 lines
712 B
Python
21 lines
712 B
Python
###############################################################################
|
|
# For copyright and license notices, see __manifest__.py file in root directory
|
|
###############################################################################
|
|
|
|
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)]
|
|
)
|
|
account_accrued_expense_id = fields.Many2one(
|
|
comodel_name='account.account',
|
|
string='Accrued Expense Tax Account',
|
|
domain=[('deprecated', '=', False)]
|
|
)
|