我試圖根據模型中的其他字段生成不同的選擇選項。我在Odoo 8 下面的工作是代碼:更改選擇字段odoo 8
我的模型:(test.py)
type = fields.Selection(selection='_get_selection', string='Type')
@api.onchange('role_name')
def _get_selection(self):
choise = []
if self.role_name == 'primary':
choise.append(('unit','Unit Case'))
if self.role_name == 'reserve':
choise.append(('res','Reserve Case'))
return choise
的觀點:(TEMPLATE.XML)
<field name="type" widget="selection"/>
但我不在選擇字段中看不到任何值。
請幫忙。
感謝,
嗨,它不工作。 – user280960