We have a custom filed STORY POINTS (in contrast to standard story points). Our filed only allows for particular numbers (1, 2, 3, 5, 8, ....). Only the standard field is used in evaluations (e.g. burndowns charts). We need our values to be respected there.
Hello,
I am not sure what you mean by respected. Do you mean that you want the values of your custom field to be copied to the Story Points Field?
If so then you would need an add-on. For example, you could use the Power Scripts add-on:
You could write a listener for the Update Issue event with a code like this:
#{Story Points} = #{your custom field name}
This listener would update the Story Points field with the Custom field value every time an issue is updated.
You can find more info about listeners here:
https://confluence.cprime.io/pages/viewpage.action?pageId=6558205
Hi @Alexey Matveev,
Thanks for your answer. Could you please tell me it will affect all the project in JIRA ??. Because i want to change only one project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need it for one project you could write a script like this:
if (project == "your project key") {
#{Story Points} = #{your custom field name}
}
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.