填充循环odoo 9中的选择字段

时间:2017-04-25 12:22:20

标签: openerp odoo-9

如何从循环中填充选择字段?

示例:

date = fields.Selection([],string='Date')

list = []

for i in diff:
    print(i)  #return 07:00


self.date = list

1 个答案:

答案 0 :(得分:0)

您可以通过以下方法获取选择字段键,值对。

    result=self.env[model].fields_get([field_name])
    key=False
    if result and result.get(field_name) and result.get(field_name).get('selection'):
        for dict_value in result.get(field_name).get('selection'):
            print dict_value

这可能会对你有帮助。