Hi All,
I'm looking for to add some random numbers to a jira custom field ("Actual time") by below groovy script as part of workflow transition. Everything works fine but couldn't remove the decimal part from below number, ie, here I need the custom field value as "1". Please suggest how its possible?
def time = 1.5166666667 IssueManager issueManager = ComponentAccessor.getIssueManager(); CustomFieldManager cfm=ComponentAccessor.getCustomFieldManager(); def MeD =cfm.getCustomFieldObjectByName("Actual time"); issue.setCustomFieldValue(MeD, String.valueOf(time));
Try String.valueOf(time as int)
Thanks it works :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, currently the custom field "time" is free text field. Which all changes needs to be done in code level for changing the field type to number field. Now getting below error,
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Double
Please suggest.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Make sure you set a Double as custom field value. You can chain "as" commands.
issue.setCustomFieldValue(MeD, (time as int) as Double);
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.