The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
So I want to set the custom field date to a certain time after the created date, depending on the condition. For example, if i choose "1 week" from the dropdown list, my "end date" custom field should be set to the date after issue's created date. I cant figure out what the problem is. Can you please help me? Thanks. Here is a part of my code:
def createdDate = issue.getCreated()
def whenShouldRestoreCF = customFieldManager.getCustomFieldObject("11335")
def endDateCF = customFieldManager.getCustomFieldObject("11334")
cal.setTime(createdDate)
if(whenShouldRestoreCF == "1 week"){
cal.add(Calendar.HOUR,168)
endDateCF = cal.toMonthDay()
//log.warn(endDateCF)
}
if(whenShouldRestoreCF == "2 week"){
cal.add(Calendar.MONTH,336)
endDateCF = cal.toMonthDay()
}
if(whenShouldRestoreCF == "3 week"){
cal.add(Calendar.MONTH,504)
endDateCF = cal.toMonthDay()
}
Your script is not actually trying to set the field, and I don't think your "if" statements are right.
For setting custom fields, https://library.adaptavist.com/entity/update-the-value-of-custom-fields-through-the-script-console is my go-to reference, you'll be able to see how to set your value from that.
The if statement problem I see is that whenShouldRestoreCF will contain an option, not a string, if the field is a select list. If it is, I would try:
if( "1 week".equals(whenShouldRestoreCF.getName() ) ){
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.