my post function script runner not working when upgrading to jira6.0.8

rozuan September 17, 2013

Hi All,

Im just thinking to migrate my jira to new version. From jira5.2.3 to jira6.0.8.

Im using post script runner to automatically add due date.

However, when testing in jira6.0.8 the script not fuction as it did in jira5.2.3.

This is my simple script.

import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.customfields.CustomFieldType
import com.atlassian.jira.issue.fields.CustomField
import java.sql.Timestamp;
 
MutableIssue myIssue = issue
 
Calendar cal = Calendar.getInstance();

// set due date to: current date + 8 hours
Timestamp mydueDate = new Timestamp(cal.getTimeInMillis()+ 8*1000*60*60);

  
 
myIssue.setDueDate(mydueDate);

Please help me to resolve this issue.

Thank you in advance.

5 answers

0 votes
Henning Tietgens
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.
September 17, 2013

Where do you want to display the due date? In JIRA you can add the due date to the view screen, in JIRA Agile you can add it to the deatils view in the rapid board configuration.

0 votes
Bharadwaj Jannu
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.
September 17, 2013

hello rozuan,

are you updating the issue after you set setDueDate customfield?

0 votes
rozuan September 17, 2013

No error on the catalina. However, I manage to resolve this after upgrade greenhopper plugin.

I got this one more issue, how to display due date field on the ticket?

0 votes
rozuan September 17, 2013

No error on the catalina. However, I manage to resolve this after upgrade greenhopper plugin.

I got this one more issue, how to display due date field on the ticket?

0 votes
Henning Tietgens
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.
September 17, 2013

Hi, are there any errors in the log? At wich position in the list of postfunctions is this script?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events