I am getting syntax errors (but the field seems to still work) since updating to JIRA 7.
Any advice?
image2016-1-18 13:49:32.png
import com.atlassian.jira.issue.Issue
Issue issue = issue
if (getCustomFieldValue("Bug Score - Total") >= 15) {
SLADate = org.apache.commons.lang.time.DateUtils.addDays(issue.getCreated(), 7);
}else if (getCustomFieldValue("Bug Score - Total") <= 14 && getCustomFieldValue("Bug Score - Total") >= 10) {
SLADate = org.apache.commons.lang.time.DateUtils.addDays(issue.getCreated(), 21);
}else if (getCustomFieldValue("Bug Score - Total") <= 9 && getCustomFieldValue("Bug Score - Total") >= 7) {
SLADate = org.apache.commons.lang.time.DateUtils.addDays(issue.getCreated(), 35);
}else if (getCustomFieldValue("Bug Score - Total") < 7) {
return null;
}else {
return null;
}
return SLADate;
It's probably not worth worrying about, but you can get rid of the type checking errors by adding type information: https://scriptrunner.adaptavist.com/latest/jira/#_providing_type_information
eg
getCustomFieldValue("Bug Score - Total") as Long >= 15assuming it is a Long.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.