Hi,
my question relates to this one.
I want to validate for a transition that some work has been logged for the issue. It works (with JMWE Field is required validator) if the user has already logged work before the transition. If the user hasn't logged work before the transition and logs work in the transition screen, the validator seems not to be able to access this new work log and does not allow to execute the transition.
I also tried to create a simple scripted validator using Scriptrunner but the behaviour is the same (the new worklog entry is not yet available).
Any ideas how to solve this?
In the meantime I did find a solution how to check a user logs work in the transition screen using a Simple scripted validator (Scriptrunner Validator):
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.MutableIssue
Map<String,ModifiedValue> modifiedValues = ((MutableIssue)issue).getModifiedFields();
return modifiedValues.containsKey("worklog")
And if you want to check some work has been logged for the issue (during the transiton or already before):
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.MutableIssue
import com.onresolve.scriptrunner.runner.util.UserMessageUtil
Map<String,ModifiedValue> modifiedValues = ((MutableIssue)issue).getModifiedFields()
return modifiedValues.containsKey("worklog") || (issue.timeSpent > 0)
Jira 7.1.2
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can be done simply in one line
issue.timeSpent || issue.modifiedFields.containsKey("worklog")
That's groovy style. No imports, no cast nevessary. Even no "return".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Only if no other check is included. For me the timelog is only necessary for some issueTypes.
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.