mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-14 18:22:04 +00:00
12 lines
278 B
Python
12 lines
278 B
Python
# Copyright 2020 Camptocamp SA
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResPartnerTitle(models.Model):
|
|
_inherit = "res.partner.title"
|
|
_order = "sequence, name"
|
|
|
|
sequence = fields.Integer(default=10)
|