I need to put a condition on the user field in the post function. The custom field has a format list, i.e. The user chose the value and the function should look at this condition. Tell me how it can be done? How does getCustomFieldValue return a field of type list?
it's not working:
Is1 = issue.getCustomFieldValue(customField)
if Is1 == 'test1':
A "condition" has a very specific meaning in JIRA - it happens *before* a post function and *only* tells the system whether the current user may use the transition or not.
I am assuming by "field of type list", you're looking at a field that is a single-select list. getCustomFieldValue will return an object representing the current selected, not a simple string.
You'll probably need something more like
if ( "test1".equals(Is1.getName()))
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.