It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm trying to set the "Original Estimate" field based on the value of a custom field (Select List (single choice)).
I don't know why it won't set the value. Setting another field "Description" works just fine.
I assume that I'm holding the proper objects as the logging is correct.
def qualification = getFieldByName("Qualification").getValue(); def originalEstimate = getFieldById("timetracking"); def descr = getFieldById("description"); log.info("qualification: '" + qualification + "'"); log.info("originalEstimate: '" + originalEstimate.getValue() + "'"); if (qualification == "Very Small") { descr.setFormValue("15m"); originalEstimate.setFormValue("15m"); } else if (qualification == "Small") { descr.setFormValue("30m"); originalEstimate.setFormValue("30m"); } else if (qualification == "Medium") { descr.setFormValue("1h"); originalEstimate.setFormValue("1h"); } else if (qualification == "Large") { descr.setFormValue("2h"); originalEstimate.setFormValue("2h"); } else if (qualification == "Very Large") { descr.setFormValue("4h"); originalEstimate.setFormValue("4h"); }
Hy Jamie,
Thx for your response!
I tried using 'getFieldById("timetracking_originalestimate")', but it doesn't seem to work at all.
When debugging my Jira, I noticed that the time tracking form field has 'timetracking' as id. I don't know if it's a small bug in Jira or if I just have a bad version.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreAtlas Camp is our developer event which will take place in Barcelona, Spain from the 6th -7th of September . This is a great opportunity to meet other developers and get n...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.