Files
app-odoo/l10n_cn_standard_latest/models/account_tax_group.py
2020-03-05 18:58:37 +08:00

10 lines
254 B
Python

# -*- coding: utf-8 -*-
from odoo import api, fields, models, _, tools
class AccountTaxGroup(models.Model):
_inherit = 'account.tax.group'
active = fields.Boolean(default=True, help="Set active to false to hide the tax without removing it.")