Our original story points field was a numeric field I had to type in. I created a new story points field and made it a drop down of the Fibonacci numbers. I then renamed the old to a new name story points (a) and named the new field to just story points. I thought I was good but now on the boards no point values will show or calculate with velocity. Is there something I am missing or do I just have to go back to my original field?
The boards need numeric data to work with - a select list is a set of string names (even if those strings are numbers, they're still just names for options). You need to use a number field for this.
Our team added a custom listener using Scriptrunner for Points, which "rounded" up to the next number in the Fibonacci sequence, if the entered value was not a Fibonacci number. Solution was pretty simple and worked well. Members quickly learn to stop arguing about a 6 or 7, when the value automatically resets to 8.
I posted our code in a related discussion:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi All,
I completely understand this requirement, since any Burndown Chart and Velocity calculation is useless as long as anyone can enter any value. This is why we created the brand new App "StoryPoints" for Jira Server.
It is dedicated to Fibonacci Estimation but supports any Selection Options via easy administration.
For details see here.
https://marketplace.atlassian.com/apps/1220390/storypoints-for-jira?hosting=server&tab=overview
Cheers
Heiko
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Perhaps you could use post-functions on relevant transitions to copy the value (convert to a number using groovy) into the original story point field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you could, but you'd want to do it as a listener, so you can pick up edits outside the workflow.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The post function worked but I did not see where I could make it a listener. Also this only creates copies over during a single transition in the workflow. If I wanted it anytime I entered I would need the listener function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can't make a post-function a listener. You would need to write your own listener or use a plugin that provided the functionality directly e.g. scriptrunner could help you write the listener.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the information Chris. We are using JIRA cloud so I am not sure how easy that would be for me. I will see how the post-function works for now.
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.