Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. def issueLinkManager = ComponentAccessor.getIssueLinkManager()
  2. def issueLinks = issueLinkManager.getOutwardLinks(issue.getId())
  3. def task = issueLinks.findAll {
  4. it.getIssueLinkType().getName() == "Оценка"
  5. }
  6. task.each { i ->
  7. def cfm = ComponentAccessor.getCustomFieldManager()
  8. def cf = cfm.getCustomFieldObject('customfield_17551')
  9. def cfvs = issue.getCustomFieldValue(cf)
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement