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,551,796
Community Members
 
Community Events
184
Community Groups

Build the "Fields" value to update when field empty

Edited

Hi,

I have a script that copy some fields from one Issue to another, but it is failing when the fields have an EMPTY value, this is my current code:

 

// get custom fields
def customFields = get("/rest/api/2/field")
.asObject(List)
.body
.findAll { (it as Map).custom } as List<Map>


def partnerId = customFields.find { it.name == 'Partner' }?.id
def reportingProjectId = customFields.find { it.name == 'Reporting Project' }?.id



def fields = issue.fields as Map

//Get the field values
def partnerValue = fields.customfield_13992.value //Multi Select type
def reportingProjectValue = fields.customfield_13690 //Free text single line type




def updateLinkedIssue = put("/rest/api/2/issue/${issue.key}")
.header('Content-Type', 'application/json')
.body([
fields: [
(partnerId): [value: partnerValue] as Map,
(reportingProjectId) : reportingProjectValue

]
])
.asString()

 

When the "partnerValue" variable has a value, the script works well, but if the field is empty the script fails, any idea how to build the FIELDS section of the JSON on the code to only include those fields that are not EMPTY?

Thanks in advance.

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events