1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/account_taxcloud/models/account_fiscal_position.py
2024-12-10 09:04:09 +07:00

11 lines
374 B
Python

# -*- coding: utf-8 -*-
from odoo import fields, models
class AccountFiscalPosition(models.Model):
_inherit = 'account.fiscal.position'
is_taxcloud_configured = fields.Boolean(related='company_id.is_taxcloud_configured', help='Used to determine whether or not to warn the user to configure TaxCloud.')
is_taxcloud = fields.Boolean(string='Use TaxCloud API')