You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello everyone,
I could use some help with my script listener implementation. I've also posted same question in to the developer community, but didn't got any answers, so I'm trying again this route.
I’m trying to create a listener, that sums up Original Estimate, Remaining Estimate and Time Spent values from linked issues to a Feature issue. Everything else seems to be working as expected, but for some reason timeSpent value cannot be updated through IssueService or IssueManager. When updating the value through mutableIssue and using deprecated store() method to save the value, it seems to be working. However, I would like to use the IssueService and its update() method.
Code examples to explain my problem:
// EXAMPLE 1:
def param = issueService.newIssueInputParameters()
param.setSkipScreenCheck(true) // No effect
param.setTimeSpent((Long) 1800)
param.setOriginalAndRemainingEstimate(secondsToTimeString(10800), secondsToTimeString(7200))
log.warn(param.getTimeSpent()) // Returns 1800 (correct)
log.warn(param.getOriginalEstimate()) // Returns 10800 (correct)
def result = issueService.validateUpdate(user, mutableIssue.id, param)
log.warn(result.isValid()) // Returns true
def updatedIssue
if (result.isValid()) {
updatedIssue = issueService.update(user, result)
indexManager.reIndex(parentIssue)
}
log.warn(updatedIssue.isValid()) // Returns true
log.warn(updatedIssue.getIssue().getTimeSpent()) // Returns 4000 (incorrect)
issueIndexingService.reIndex(mutableIssue)
//EXAMPLE 2:
mutableIssue.setTimeSpent((Long) 3600)
mutableIssue.setEstimate((Long) 7200)
log.warn(mutableIssue.getTimeSpent()) // Returns 3600
log.warn(issueManager.isEditable(mutableIssue)) // Returns true
// mutableIssue.store() // This updates both values and works as expected
Issue updatedIssue = issueManager.updateIssue(
user,
mutableIssue, UpdateIssueRequest.builder().eventDispatchOption(EventDispatchOption.ISSUE_UPDATED).sendMail(false).build()
) // This updates only the estimate value, why?
log.warn(updatedIssue.getTimeSpent()) // Returns 3600 (correct)
issueIndexingService.reIndex(mutableIssue)
Log work and Time Tracking fields are present on the project screens and I’ve also tried, without success, to skip screen check with IssueParameters setSkipScreenCheck() method. Script’s user also has permissions to edit and log work on issue. What am I doing wrong?
Thank you in advance!
Br
Janne
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
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