How to set a custom field date (post function)

Gökberk Karaca March 30, 2022

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()
}

 

 

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 30, 2022

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() ) ){

TAGS
AUG Leaders

Atlassian Community Events