mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
12 lines
281 B
Python
12 lines
281 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, models, fields, _
|
|
|
|
|
|
class BlogBlog(models.Model):
|
|
_inherit = 'blog.blog'
|
|
_order = 'sequence, name'
|
|
|
|
# 排序
|
|
sequence = fields.Integer(string='Sequence', default=20, index=True, help="Determine the display order")
|