我试图在python中更新现有的自定义字段,以便我可以自动添加几个可以在下拉框中使用的“值”。以下行定位到我想要的自定义字段
for a in jira.fields():
if a['name'] == "block":
#print a.update(fields={'customfield_12100': {'value': "testingtest"}})
print a
我知道这是因为它返回了正确的字段:
{u'name': u'block', u'searchable': True, u'navigable': True, u'custom': True, u'clauseNames': [u'cf[12100]', u'Lease Block'], u'orderable': True, u'id': u'customfield_12100', u'schema': {u'customId': 12100, u'type': u'option', u'custom': u'com.atlassian.jira.plugin.system.customfieldtypes:select'}}
但新值不会添加到我的自定义字段选项列表中。你如何增加价值呢?
Jira Version 7.1.7
答案 0 :(得分:0)
使用OOB Jira安装无法完成。必须安装第三方插件https://marketplace.atlassian.com/plugins/jiracustomfieldeditorplugin/server/overview。