Hi all together,
we are using Scriptrunner in our JIRA / JSD environment.
I implemented the functionality from this post: https://community.atlassian.com/t5/Jira-questions/auto-add-organization-on-creation-of-ticket/qaq-p/25440 It works perfectly fine.
I would now like to modify it a little bit. The idea is to only add two specific Organizations whenever a ticket is created. I am totally new to groovy and also my knowledge of Java is just little.
My idea is to loop the variable "organizationsToAdd" and if the value is like my needed organization the script should add it to the customfield.
Something like this:
for (int i = 0; i< organizationstoadd.length; i++){
if (organizationsToAdd[i].name == "org1" || organizationsToAdd[i].name == "org2" )continue
else delete organizationsToAdd[i]
}
My problem is now that I don't know what "organizationService.getOrganizations(currentUser, organizationsQuery)?.right()?.get()?.results" returns and how I can access it. Is it an array or a list?
Can you perhaps give me hint how I can find out what is returned by methods and stuff like this in general?
I tried log.debug() but it is not writing anything in log console of Scriptrunner.
I would be really really happy if you can help me a little bit
Many thanks and best regards
Hannah
Ok Hannah,
Try the following in a script listener
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
import com.atlassian.servicedesk.api.ServiceDeskManager
import com.atlassian.servicedesk.api.organization.CustomerOrganization
import com.atlassian.servicedesk.api.organization.OrganizationService
def serviceDeskManager = ComponentAccessor.getOSGiComponentInstanceOfType(ServiceDeskManager)
def serviceDeskProject = serviceDeskManager.getServiceDeskForProject(issue.projectObject)
// if the project is not a Service Desk one then do nothing
if (serviceDeskProject.isLeft()) {
log.error "${serviceDeskProject?.left()?.get()}"
return
}
def cf = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Organizations")
def organizationsToAdd = getOrganizations("Organization B", "Organization C")
cf.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(cf), organizationsToAdd), new DefaultIssueChangeHolder())
List<CustomerOrganization> getOrganizations(String... organizationNames) {
def adminUser = ComponentAccessor.getJiraAuthenticationContext().loggedInUser
def organisationService = ComponentAccessor.getOSGiComponentInstanceOfType(OrganizationService)
def organizationQuery = organisationService.newOrganizationsQueryBuilder().build()
def organization = organisationService.getOrganizations(adminUser, organizationQuery)
if (organization.isLeft()) {
log.warn "${organization?.left()?.get()}"
return null
}
organization.right().get().results.findAll { it.name in organizationNames }
}
You may get some errors in the UI but are because of the static type checking, so you can safely ignore them. If you think that the script does not work as expected, check the application logs.
Please let me know how this went.
Regards, Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's great.
Sorry for the delayed response, but we were a bit busy with developing this period.
Regards, Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Thanos Batagiannis [Adaptavist]
Hi Thanos,
I have my very own Endgame fast approaching!
Similar to Hannah, When a ticket is created via the customer portal, we need all the Organizations the (Reporter) has been associated with auto-assigned to the issue.
I have found/implemented the script on your website, however it returns ALL Orgs linked to the project regardless of the (current reporters) association
I would like to edit the script if possible, but as a total novice to scripting I don't no were to start or the correct syntax?
We are running JIRA v7.12.3 and JSD 3.8.1
Thanks Paul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey,
is there nobody who can help me with this? :-/
Thanks and BR
Hannah
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hy Hannah,
Which service desk version you use ?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.