This commit is contained in:
Ivan Office
2023-10-27 14:08:03 +08:00
parent 1a6a2fe77f
commit f1dfb000cc
60 changed files with 2441 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
# -*- 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)