You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
477 B
17 lines
477 B
# Copyright 2019 Patrick Wilson <patrickraymondwilson@gmail.com>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class PartnerPriority(models.Model):
|
|
_name = "partner.priority"
|
|
_order = "sequence"
|
|
_description = "Partner Priority"
|
|
|
|
name = fields.Char(string="Priority", required=True)
|
|
description = fields.Text(required=True)
|
|
sequence = fields.Integer(
|
|
required=True,
|
|
default=0,
|
|
)
|