mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-26 23:42:04 +02:00
14 lines
405 B
Python
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)
|