Advanced Roadmaps for Jira does not show Story Points values correctly, and does not roll up Story Points correctly

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*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
  • 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
    JPOSERVER-3058 - Getting issue details... STATUS

ソリューション

If applicable, you can change the Jira Software default story points field, which will result in ARJ using this field for story points calculation.

  1. 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'
  2. Obtain the ID of the propertynumber  row needing update

    SELECT id FROM propertynumber WHERE ID IN (SELECT id FROM propertyentry WHERE PROPERTY_KEY = 'GreenHopper.StoryPoints.Default.customfield.id'); 
  3. Update the propertyvalue column of the proprertynumber  table for the ID  obtained in step 2 to the custom field id obtained in step 1

    UPDATE propertynumber SET propertyvalue = '<STORY POINTS CUSTOM FIELD ID FROM STEP 1>' WHERE id = <PROPERTYNUMBER ID FROM STEP 2>





最終更新日 2021 年 9 月 7 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.