基本的に、CreateIssueDetails!init.jspa 操作へのリンクを含む Web アイテムを作成して、URL でいくつかの値を事前定義しようとしています。
<web-item key="has-defect" name="has-defect" section="operations-operations">
<label>Has Defect</label>
<link linkId="issueaction-has-defect">/secure/CreateIssueDetails!init.jspa?ppid=$issue.id&pid=$issue.project.id&issuetype=27&lname=Defect&customfield_10056=$issue.getCustomField("customfield_10056").name&assignee=$issue.assignee.name&customfield_10011=$issue.getCustomFieldValue("customfield_10011")&customfield_10046=10248&customfield_10022=$issue.getCustomFieldValue("customfield_10022")</link>
</web-item>
カスタムフィールドの「Some Custom Fied」値に問題があると仮定します$issue.assignee
。
私はすでに試しました:
$issue.getCustomField("customfield_10056").value;
$issue.getCustomField("customfield_10056").name;
$issue.getCustomFieldValue("customfield_10056")
御時間ありがとうございます。