Good-day, i have a script which works perfectly on a specified field but i want it to trigger with the associated issue number, this is the script i use:
((cfValues['Policy Number'] ?: 0) as Integer) >= 0
when i modify it this way it doesnt work:
((cfValues['Policy Number'] ?: 0) as Integer) >= 0.getValue(issue))
OnDemand is the hosted service for Atlassian tools. You have used wrong tags in your question.
Your condition has syntax errors, you can try the condition tester provided by the script runner plugin.
Mizan, the script i used "((cfValues['Policy Number'] ?: 0) as Integer) >= 0" works perfectly but only thing i need help with is do i modify it to get the issue key?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should expiriment with the condition tester ,
The condition should be something like
if(issue.key='TST-123'){((cfValues['Policy Number'] ?: 0) as Integer) >= 0}
The above is not tested
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1. How are you running this script?
2. How are you doing it on OnDemand?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1. I am running it on workflow transitions "Script Post function"
2. Just add cript post function on a transition so that when policy number field is entered a vaule of moore than 0 it should fire an email which it does but i want it to include the ticket asscociated with it.
tx
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What "script post function"?
How are you doing this in OnDemand? The scripting plugins I've used are not available on OnDemand.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.