請問many2one的relation field 要如何設定預設值
-
小弟寫了個wizard 在初始顯示form時希望帶入預設值
參閱了文件好像並無提到type:many2one的relation欄位要如何用 'default': lambda *a:設定預設值
fields_form =
{
'gp_name': {'string': ' gp_name ', 'type': 'char', 'default': lambda *a: '' },
'categ_id': {'string': ' categ_id ', [color=red][b]'type': 'many2one', 'relation': 'product.category'[/b][/color]},
}
懇請大大解惑 謝謝