Advanced Roadmaps for Jira does not show Story Points values correctly, and does not roll up Story Points correctly
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
Advanced Roadmaps for Jira (ARJ) does not show the right values for "Story points". Values can be added in the plan, but are not reflected correctly on the Jira Issue itself.
In addition, other Story Points related functions, like "Progress (story points)" and roll-up of Story Points is not working correctly.
環境
- Jira Server or Data Center 8.x, 9.x, 10.x
- Advanced Roadmaps for Jira
診断
- The symptoms match that in the "Summary" section
When checking the database, the custom field "id" for the "Story Points" field mismatches to the field Id that ARJ uses:
-- Step 1: Obtain the custom field ID for "Story Points" SELECT id FROM customfield WHERE cfname = 'Story Points' -- Step 2: Obtain the custom field ID that ARJ uses for Story Points: SELECT propertyvalue FROM propertynumber WHERE ID IN (SELECT id FROM propertyentry WHERE PROPERTY_KEY = 'GreenHopper.StoryPoints.Default.customfield.id');
原因
- ARJ uses the default Jira Software "Story Points" field for story points calculations, not what the linked board is configured to use
- ARJ renders the column "Story points" (with a lower case p) rather than the actual field name used for story points JSWSERVER-25071 - Render the "Story points" column name as the Jira field name
ソリューション
If applicable, you can change the Jira Software default story points field, which will result in ARJ using this field for story points calculation.
Obtain the custom field ID of the story points field you wish to use (for example, "Story Points")
SELECT id FROM customfield WHERE cfname = 'Story Points'Obtain the ID of the
propertynumberrow needing updateSELECT id FROM propertynumber WHERE ID IN (SELECT id FROM propertyentry WHERE PROPERTY_KEY = 'GreenHopper.StoryPoints.Default.customfield.id');Update the
propertyvaluecolumn of theproprertynumbertable for theIDobtained in step 2 to the custom field id obtained in step 1UPDATE propertynumber SET propertyvalue = '<STORY POINTS CUSTOM FIELD ID FROM STEP 1>' WHERE id = <PROPERTYNUMBER ID FROM STEP 2>