以下是字段信息,但不会显示在网页
中'type': fields.selection([('country','Country'),('state','State')],'Type'),
在我看来,该字段是
<field name="type"/>
答案 0 :(得分:0)
我认为您的代码没有任何问题。可能还有其他因素导致您的问题。但是,您可以尝试稍微改变您的代码: 将选择声明为类外的全局变量:
choice = (('country','Country'),('state','State'))
然后在你的课堂上:
'type_': fields.selection(choice,string='Type'),
您的xml没问题,但您可以尝试添加widget =“selection”:
<field name="type_" widget="selection"/>
请注意,我将您的字段重命名为类型_ ,类型可能会保留。