mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
13 lines
373 B
Python
13 lines
373 B
Python
# Copyright 2015 Tecnativa - Antonio Espinosa
|
|
# Copyright 2015 Tecnativa - Jairo Llopis
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResPartnerTurnoverRange(models.Model):
|
|
_name = "res.partner.turnover_range"
|
|
_description = "Turnover range"
|
|
|
|
name = fields.Char(required=True, translate=True)
|