mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
12 lines
312 B
Python
12 lines
312 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Country(models.Model):
|
|
_inherit = 'res.country'
|
|
_order = 'sequence,name'
|
|
|
|
sequence = fields.Integer('Sequence', help="Determine the display order", default=99)
|