Hi,
i have been trying to transition issues with parameters programmatically. I am using IssueInputParameters to update system field values. I have been able to update almost all system fields except for timespent(log effort)
I am unable to set that effort using the setTimeSpent() of IssueInputParameters, however it does not reflect in the Issue and i do not notice any error.
Code Snippet:
IssueInputParameters issueInputParameters = new IssueInputParametersImpl(); //Populate IssueInputParameters with field values ... //Validate if the transition is valid for the issue IssueService.TransitionValidationResult validationResult = issueService.validateTransition(user, issue.getId(), actionId, issueInputParameters); if (validationResult.isValid()) { log.debug("Executing valid transition "); transResult = issueService.transition(user, validationResult); ... }else { //transition failed }
Any pointers/help in this case is really appreciated.
Thanks in advance.
Try the below script. Change the value of time spent and let me know the results.
import com.atlassian.jira.ComponentManager import com.atlassian.jira.bc.issue.IssueService import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.comments.CommentManager import com.opensymphony.workflow.WorkflowContext import org.apache.log4j.Category import com.atlassian.jira.issue.IssueInputParameters import com.atlassian.jira.util.JiraUtils; IssueService issueService = ComponentAccessor.getIssueService() IssueInputParameters issueInputParameters = issueService.newIssueInputParameters() issueInputParameters.setTimeSpent(2L) workflowTransitionUtil.validate() workflowTransitionUtil.progress()
Hi Mahesh,
Thank you for the suggestion. One quick question.
How is "issueInputParameters" passed as a param or related to "workflowTransitionUtil"?
workflowTransitionUtil as i know requires a mutableIssue object. Please correct me incase.
-Parashar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The method setTimeSpent comes from the interface issueInputParameters. This sets the value for the field. But, workflowTransitionUtil.validate() and workflowTransitionUtil.progress() helps for ErrorCollection while storing the values, since issue.store() is deprecated.
FYI, I have updated this comment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sure, let me try to set a mutableIssue object to validate with workflowTransitionUtil.validate().
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is the code snippet
WorkflowTransitionUtil workflowTransitionUtil = ( WorkflowTransitionUtil ) JiraUtils.loadComponent( WorkflowTransitionUtilImpl.class ); issueInputParameters.setTimeSpent(2L*3600); workflowTransitionUtil.setUsername(user.getEmailAddress()); workflowTransitionUtil.setAction(actionId); com.atlassian.jira.issue.MutableIssue opt= ComponentAccessor.getIssueManager().getIssueObject(issueKey); opt.setTimeSpent(2L*3600); workflowTransitionUtil.setIssue(opt); Collection<String> validateErrors = workflowTransitionUtil.validate().getErrorMessages(); for (String error : validateErrors) { System.out.println("ParaTransitionItr - Validate error "+ error); } Collection<String> progressErrors =workflowTransitionUtil.progress().getErrorMessages(); for (String error : progressErrors) { System.out.println("ParaTransitionItr - Progress error "+ error); }
There are no errors, the transition is successful but time spent is not updated! Same as with IssueinputParameters in transition.
issueService.transition(user, validationResult);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it sets the value but it is not storing I guess. However workflowTransitionUtil.validate() helps to store the value to db.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Correct. But here is where i am stuck since it does not write to database.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Cool. Enjoy now!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much
I was able to set the time. But I have to use time logging API to be able to log time/effort properly.
Updated the code above that worked for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice! Please share your new code as well. It might help others.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Updated code that worked with WorkflowTransitionUtil to set the Time spent with MutableIssue object.
WorkflowTransitionUtil workflowTransitionUtil = ( WorkflowTransitionUtil ) JiraUtils.loadComponent( WorkflowTransitionUtilImpl.class ); workflowTransitionUtil.setUsername(userName); workflowTransitionUtil.setAction(actionId); com.atlassian.jira.issue.MutableIssue mutIssueObj= ComponentAccessor.getIssueManager().getIssueObject(issueKey); //set time to 2 hours mutIssueObj.setTimeSpent(2L*3600); workflowTransitionUtil.setIssue(mutIssueObj); workflowTransitionUtil.validate(); workflowTransitionUtil.progress();
Thank you for the pointers
-Parashar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i get validation errors by the Issue Service while tried to change the status of an issue (transition). This error is "Time spent is required", but setTimeSpent(Long) method of IssueInputParameters does not work...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I make the transition without any checks (rights, conditions, validation) and then apply the manager https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/issue/worklog/WorklogManager.html
any ideas?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.