Forums

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

Search by attachment name from JQL

sm.park December 11, 2019

Hi.

I created a custom field that uses a scriptrunner to display the attachment name. I would like to search for issues with only attachments, but JQL shows incorrect search results. Can you help me figure out which code is wrong?

 

import com.atlassian.jira.component.ComponentAccessor

def attachments = ComponentAccessor.getAttachmentManager().getAttachments(issue)
def Result = null

Result = attachments.collect {
it.filename

}.join(", ")

return Result

1 answer

1 accepted

1 vote
Answer accepted
Leonard Chew
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.
December 12, 2019

I have created a scripted field called "AttachmentName" with your script, and it seems to be OK.

In which way does your system not work correctly? - Have you run a full reindex?

AttachmentName.png

Leonard Chew
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.
December 12, 2019 edited

Ah, I have found the flaw.

Your script always sets a value, even if the attachments are empty, so when you query with "AttachmentName is empty", it will not return any records.

Change your code like this:

import com.atlassian.jira.component.ComponentAccessor

def attachments = ComponentAccessor.getAttachmentManager().getAttachments(issue)
def Result = null

if (!attachments.empty)
{
Result = attachments.collect {
it.filename
}.join(", ")
}

return Result

 

-> leave your result null, if there are no attachments, then you can also query on "is empty"

AttachmentNameEmpty.png

Like • 3 people like this
Leonard Chew
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.
December 12, 2019

Apart from your own scripted field, Scriptrunner provides functions to query for attachments, such as

issueFunction in hasAttachments ("docx")

Maybe you dont even need a scripted field

Like • 2 people like this
sm.park December 12, 2019

Thank you for your helpful.

jamila.augustine
Contributor
February 19, 2020

@Leonard Chew : Thanks from another beneficiary!

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, loom, AI, meeting recording, community

[NEW] Record your meetings with Loom

Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.

Learn more
AUG Leaders

Atlassian Community Events