Missed Team ’24? Catch up on announcements here.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

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

Swarna Radha 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

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Gezim Shehu [Communardo]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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