I have in JIRA 3 custom fields: Priority (with 5 choices), change risk (with 3 choices) . If priorty equal "low" and change risk equals "Medium" then the 3rd field will autofil with "normal" or one three choices.
I need some code to put in a script field (see image below), to make the above happen.
Is there a good plugin I can use, or........
I need some simple coding done and willing to pay someone to do this. Would you know anyone who can,
or a site I can go to and advertise a need for this?
Change Category.png
Try this code for scripted field, just change names for custom fields:
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.MutableIssue import com.atlassian.jira.issue.customfields.option.Option import com.atlassian.jira.issue.fields.CustomField MutableIssue issue = ComponentAccessor.getIssueManager().getIssueObject("ZV2-1") if(issue == null) return "no such issue" CustomField priority = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Сложность"); if(prioryty == null) return "no such field" CustomField changeRisk = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Сложность"); if(prioryty == null) return "no such field" if( ((Option) issue.getCustomFieldValue(prioryty)).getValue().equals("low") && ((Option) issue.getCustomFieldValue(changeRisk)).getValue().equals("normal")){ return "normal" }
Vasiliy, we are making progress!! Thank you so much for this. I am working with another novice coder, we have a question: since "priority" is a standard field, and not a custom field is the code correct calling priority a CustomField?
CustomField priority = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName(
"Сложность"
);
if
(prioryty ==
null
)
return
"no such field"
Thanks!
John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need to get standart field you should use methods of issue object to get it.
In this case use: issue.getPriorityObject()
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.