how add comment in link task

Алексей Баженов September 20, 2016

When we change period in the task  this period should be appearing in the comments to the linked project. How  I can do that?

5 answers

0 votes
Алексей Баженов September 21, 2016

 We have two projects. For example: project A and project B. We create in both projects different tasks. The tasks  have different deadlines. When we associate these tasks we want that in task of project B was generated comment with a deadline of task of project A. 

Could you explain please what plugin can we use. 

 

0 votes
Ranganath HV Gowda
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 21, 2016

Could you explain me the scenario please, so I can try to help you out on this

0 votes
Ranganath HV Gowda
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 20, 2016

It can be done using your workflow post-functions.

Please work on it, you have lot there to explore.

Алексей Баженов September 20, 2016

i create scritp post-funtion, but cjmment not added

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.link.IssueLinkManager
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.comments.CommentManager

Issue issueKey = issue

def subTasksLinks = ComponentAccessor.getIssueLinkManager().getInwardLinks(issue.id)

subTasksLinks.each {

def CurrentUser = ComponentAccessor.getJiraAuthenticationContext().getUser().displayName


CommentManager commentManager = ComponentAccessor.getCommentManager()



def comment = "Some comment ......"

if(issueKey){

commentManager.create(issueKey, CurrentUser,comment, true)
}
}

 

0 votes
Алексей Баженов September 20, 2016

yes, create time

0 votes
Ranganath HV Gowda
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 20, 2016

Period = Time am I right?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events