Hi Folks,
I would like set a default value for Time Spent field by setFormValue function by using behaviour.
I've tried the code below but it does not work properly. Is there any suggestion?
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.issue.CustomFieldManager;
import com.onresolve.jira.groovy.user.FieldBehaviours;
import com.atlassian.jira.issue.Issue;
import groovy.transform.BaseScript
import org.apache.log4j.Level
import org.apache.log4j.Logger
@BaseScript FieldBehaviours fieldBehaviours
String className = "tr.com.as.behaviour.OysmSetTimeSpent10Min";
Logger logger = Logger.getLogger(className);
logger.setLevel(Level.ERROR);
logger.debug ("Script " + className + " started");
def timeSpent = getFieldByName("Time Spent");
timeSpent.setFormValue("10m");
Jira Version: 8.5.4
Script Runner Version: 6.19.0
Kind Regards,
Burak
Hi Burak,
WorklogPRO has build-in way to set values on the "Log Work Custom Field" or "Log Work Dialog". Navigate to Administration->Scripts and add following code to "Before Worklog Dialog Display Script".
worklogPreEntryParameters.timeSpent = "10m"
PS: This only works "Log Work Custom Field" of WorklogPRO and "Log Work Dialog" of WorklogPRO. It doesn't work for build-in time tracking field or "Log Work Dialog" of Jira itself.
Hi Deniz,
Thanks for your reply.
It works as you mentioned in "Log Work Dialog" as expected, so I want to be able to use this in a transition but not able find the field "Log Work Custom Field", there is only one field which named "Log Work" and it seems that it is belong to "System Field", so could you explain me how can I add this field into a screen and can use for only the specific transition?
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is a custom field provided by WorklogPRO. You need to add it from custom field administration screen. You can add it to any transition screen like any other custom field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try with this:
def timeSpent = getFieldById("log-work-time-logged");
I used the chrome developer panel to see the id of the field in the edit screen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Peter,
Yes I also see the ID in Inspect Element but it does not work for me.
The field in a transition screen and I use the behavior but still does not work. Any other suggestion?
Thanks,
Burak
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure what else to tell you.
Have you looked at your logs? Are there any errors?
With the simplest of behavior:
I see this on my screen (have to put the "Log work" field on the screen and check the box during the transition to view the default value):
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Peter,
I also tried with your code as below but same result for me. It still does not get 10m into the screen. (Even I've removed the mapping.)
Below is my screen.
BTW we're using WorklogPRO plugin for logging work, so probably that's why I do not see "Log Work" checkbox on my screen.
Anyway, I see "log-work-time-logged" ID in Inspect element in Chrome.
Thanks,
Burak
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Behaviours only work with built in jira screens (Created, Edit and Transition screens).
It doesn't work with Clone, Move or Third-party screens.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is the field “Log Work” and it is in transition screen not in 3rd party screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think that scriptrunner is aware of, or compatible with worglogpro custom fields.
You would have to open an enhancement request with Adaptavist.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.