from odoo import api,fields,models
一般用来记录整型数据
fields.Integer(string='排序',default=0)
sequence odoo 里面的默认的排序使用的字段
postgresql 中的 int 类型的长度为 4 字节, 32 位
from odoo import api,fields,models
一般用来记录整型数据
fields.Integer(string='排序',default=0)
sequence odoo 里面的默认的排序使用的字段
postgresql 中的 int 类型的长度为 4 字节, 32 位