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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,238
Community Members
 
Community Events
184
Community Groups

Auto Fill Sub-task Summary based on Parent Summary : Behaviour Script

Chander Inguva
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.
Jan 29, 2019

Thought it might help some one.

//1. Write a behavior script on subtask issue type for project : XYZ
//2. Subtask summary should be auto populated from summary of the parent task + version Name from parent Task (if any) 

//Add Summary field on Behaviour and add the following Server Side script to it

import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.user.FormField
import com.onresolve.jira.groovy.user.FieldBehaviours

import groovy.transform.BaseScript
import java.sql.Timestamp

import static com.atlassian.jira.issue.IssueFieldConstants.*

@BaseScript FieldBehaviours fieldBehaviours

FormField field = getFieldById(getFieldChanged())
FormField parent = getFieldById("parentIssueId")
Long parentIssueId = parent.getFormValue() as Long

if (!parentIssueId || field.getFormValue()) {
    return // This is to check if there is a parent Object or sub task has already some value on Summary field/
           //if the above condition is true it executes next block of code written below
}

def issueManager = ComponentAccessor.getIssueManager()
def parentIssue = issueManager.getIssueObject(parentIssueId)
//def customFieldManager = ComponentAccessor.getCustomFieldManager()


//Prefix (if wanted)
String additionalText = "Automated: " 


//The below line will auto populate summary for Sub-task based on summary of Parent Task
getFieldById(SUMMARY).setFormValue(additonalText + parentIssue.summary)

 

 

Reference

1 answer

Thanks, man

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events