We are trying to get the "Fix Version" release date to also appear on User Stories. We want the same date that is on the Release Tab where you have the Fix Version Name and the Release Date associated with that Fix Version. Does anyone know if it's possible to get that date (Just date, not date and time) to appear on the User Story?
Hello,
You would need an add-on for it, which will let you to create a scripted field. You can use the Power Custom Fields add-on for it. It is a free add-on:
https://marketplace.atlassian.com/apps/1210749/power-custom-fields?hosting=server&tab=overview
You can create a custom field with a script like this:
if (fixVersions.size() > 0) {string format =
"yyyy.MM.dd"
;
return formatDate(admGetProjectVersion(key, fixVersions[0]).releaseDate, format);
}
The Fix Versions fields can have multiple values. In my script I take the frist fix version value. Then you can add this custom field to any issue screen to see the release date of a version, which is set for the issue.
Hi
it is possible to get release date field but you have to manually update it for each user story
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.