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
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?
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"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.