mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 10:42:08 +00:00
14 lines
388 B
Python
14 lines
388 B
Python
# Copyright 2020 Ecosoft Co., Ltd. (http://ecosoft.co.th)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from flectra import fields, models
|
|
|
|
|
|
class TierDefinition(models.Model):
|
|
_inherit = "tier.definition"
|
|
|
|
has_forward = fields.Boolean(
|
|
string="Allow Forward",
|
|
default=False,
|
|
help="Allow option to 'Forward' to different person.",
|
|
)
|