my jira version is 4.4.1.
i tried to use workflows' Validators (Field Required for Time Spent),but failed.
even i have log work,"Workflow Error" still says Time Spent is required when Resolve
anyone can help?
Use Script Runner plugin and add a validator to check whether the total spent time is more than zero.
This link may help with the code https://answers.atlassian.com/questions/101423/time-spent-in-in-progress-open-statuses-how-to
Sorry Fabby, it's very tough to understand what you really mean by that statement. If you don't mind can you please rephrase?
And why don't you check @mizan 's suggestion? I guess that is a better.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,Renjith
code in this link try to get Time Spent in History Tab,but when delete some work logs, "change history" can't reflect actual Time Spent value
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
sorry of my poor English.
i add below code to Script Validator of workflow using Script Runner Plugin
import com.atlassian.jira.issue.Issue issue.getTimeSpent()
and it meets my requirement.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok good, I initially thought it was a question for us.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually for anyone checking in this is better as it allows you to log work in the edit screen as opposed to fabbys solution which requires already logged work prior to triggering the transition:
import com.atlassian.jira.issue.Issue issue.getTimeSpent() || issue.getModifiedFields().get("worklog")
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.
Hello, this is working fine, but it's not when the ticket has sub-tasks with logged time. Any idea?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have been using "issue.getModifiedFields().
get
(
"worklog"
)
" in a script validator for a workflow transition to determine if a user has added 'time worked' in the transition. This has been working fine for several months. I have recently upgraded to ScriptRunner v4.1.3.14 and the ScriptRunner editor now gives me the following error on this code "Cannot find matching method com.atlassian.jira.issue.Issue#getModifiedFields()." I find "getModifiedFields()" in the MutableIssue class, see https://docs.atlassian.com/jira/latest/com/atlassian/jira/issue/MutableIssue.html, and my understanding was that this came into the script in the binding for scripts in the workflow transitions. Do I need to declare a new mutable issue from the issue passed in the script binding and then use "getModifiedFields()"? I am wondering if anyone has a solution to this that works with the newer version of ScriptRunner? Thank you for ant help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am having the same issue as Will. Anyone have any ideas on what an be done to fix it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Will and @Dayna,
We were with this same case and were able to resolve with following code:
import com.atlassian.jira.issue.Issue import com.atlassian.jira.issue.MutableIssue def mIssue = issue as MutableIssue return mIssue.getTimeSpent() || mIssue.getModifiedFields().get("worklog")
It worked for us against JIRA 7.1.9 :D
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Italo Qualisoni [e-Core] thank you for this!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about making the log work fields compulsory on resolve screen refer https://confluence.atlassian.com/display/JIRA/Logging+Work+on+an+Issue#LoggingWorkonanIssue-Loggingworkand/orspecifyingtimeestimatesonthesameJIRAscreen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check out www.timetrackingenforcer.com
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.