我在论坛中搜索并尝试了我找到的所有解决方案,但还没有任何内容。 我现在这个:
class open_classB(osv.osv):
_name = "open.classB"
_rec_name = 'desc'
_columns = {
'desc':fields.char("Description:", size = 50, required = True),
}
open_classB()
class open_classA(osv.osv):
_name = 'open.classA'
_columns = {
'notes':fields.text('Notes:'),
'desc_id':fields.many2one('open.classB', 'Description:', 'desc'),
}
open_classA()
而不是下拉列表显示如下: '黄色' ; '蓝色'; 它显示:'open.classB,1'; 'open.classB,2' 我已经尝试将“_rec_name”也放在“open_classA”上,但它是一样的。
在XML中,我只提出:
<field name="desc_id"/>
感谢。