how can i set duedate before issue created ?

Ugur GUNGOR August 20, 2014

I am using SetDueDate() function in my post function on jira scripting suite. This page says https://docs.atlassian.com/jira/6.3.1/com/atlassian/jira/issue/MutableIssue.htmlafter calling any setter method i need to call store() method. But store method is deprecated. I need another update method before issue created. is there any example ?

Please help me.

Thanks for answers.

2 answers

1 accepted

0 votes
Answer accepted
Alexey_Rjeutski__Polontech_
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.
August 20, 2014

If you want to set due date inside issue creation transition - you should just use the same issue object as provided for you, but don't use store method() for uncreated issues. Just set due date and place postfunction on the first place in the postfunction list.

0 votes
Ugur GUNGOR August 20, 2014
This is my code. When i delete store it doesnt set due date. How can i do that. Also my post function is in first place.

from com.atlassian.jira import ComponentManager
from com.atlassian.jira.issue import Issue
from java.sql import Timestamp
import java
import time
from java.util import Calendar

cal = Calendar.getInstance();


ts=long(cal.getTimeInMillis()+ 1000*2*60*60)
issue.setDueDate(java.sql.Timestamp(ts))


issue.store()

Suggest an answer

Log in or Sign up to answer