mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-12-23 12:51:47 +00:00
14 lines
369 B
Python
14 lines
369 B
Python
# Copyright 2012 - Now Savoir-faire Linux <https://www.savoirfairelinux.com/>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class KPICategory(models.Model):
|
|
"""KPI Category."""
|
|
|
|
_name = "kpi.category"
|
|
_description = "KPI Category"
|
|
name = fields.Char(required=True)
|
|
description = fields.Text()
|