The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Store value of "Target start", each time the field updates, the value is stored in a custom field

Swarna Radha
Contributor
September 16, 2018

Hi,

I want to store the value of "Target start" in another custom field. Each time the value of Target start changes, it is stored as an array.

How to achieve this using script runner?

 

Thanks

Swarna

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Gezim Shehu [Communardo]
Community Champion
September 28, 2018

Sorry don't have much time to refine this.

But the basics are here.

 

Just add a new Script Listener, for your desired project or ALL (you can also define conditions in the script for example if(issuetype = task) etc)

Run the listener on event Issue Updated

Inline Script

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
def change = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find{it.field == 'nameOfFieldToMonitor'}

if (change) {
    MutableIssue issue = (MutableIssue) event.issue
    def customFieldManager = ComponentAccessor.getCustomFieldManager()
    def issueManager = ComponentAccessor.getIssueManager()
    def fieldToHoldValue = customFieldManager.getCustomFieldObjectByName('nameOfFieldToHold')
    def existingHistory = issue.getCustomFieldValue(fieldToHoldValue)
    def newHistory = []
    //def user = ComponentAccessor.getUserManager().getUserByKey('username')
    def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
    
    if(existingHistory){
        newHistory.add(existingHistory)
        newHistory.add(change.newstring)
    }else{
        newHistory.add(change.newstring)
        //newHistory = change.oldstring.toString() + ',' + change.newstring.toString()        
    }
      
    if(newHistory){
        issue.setCustomFieldValue(fieldToHoldValue, newHistory.toString())
        issueManager.updateIssue(user, issue, com.atlassian.jira.event.type.EventDispatchOption.ISSUE_UPDATED, false)
        //log.warn "Field value changed from ${change.oldstring} to ${change.newstring}"
    }
}

 

Structure the array or the saving however you want.

TAGS
AUG Leaders

Atlassian Community Events