oca-financial/odoo-bringout-oca-account-fiscal-rule-account_ecotax/account_ecotax/models/ecotax_sector.py
2025-08-29 15:43:04 +02:00

14 lines
405 B
Python

# Copyright 2021 Camptocamp
# @author Silvio Gregorini <silvio.gregorini@camptocamp.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class EcotaxSector(models.Model):
_name = "ecotax.sector"
_description = "Ecotax Sector"
name = fields.Char(required=True)
description = fields.Char()
active = fields.Boolean(default=True)