mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
220 B
Python
10 lines
220 B
Python
from odoo import fields, models, api
|
|
|
|
|
|
class Country(models.Model):
|
|
_inherit = 'res.country'
|
|
_description = 'Country'
|
|
_order = 'priority, name'
|
|
|
|
priority = fields.Integer(string='Priority', default=1000)
|