0

有没有人使用 Rally-Bugzilla 连接器来同步状态字段(例如,将 Rally 中的 Schedule State 字段与 Bugzilla 中的状态字段同步 - 它具有诸如“NEW”、“EVALUATED”、“ASSIGNED”、“IN_WORK”等值)? 在我看来,这很复杂,因为两个系统的值之间没有 1:1 的关系,在这种情况下,有人对方法有什么建议吗?

4

1 回答 1

0

这通常通过连接器的 config.xml 中的字段处理程序来促进。在http://www.rallydev.com/help/rally-integrations-faq-and-best-practices#How-to-map-fields上有一个不错的讨论。总体思路是这样的:

    <Connector>
       <FieldMapping>
          <Field> <Rally>State</Rally>
                  <Other>BG_STATUS</Other>
          </Field>
          ....
       <OtherFieldHandlers>
          <OtherEnumFieldHandler>
             <FieldName>BG_STATUS</FieldName>
             <Mappings>
                <Field><Rally>Defined</Rally>           <Other>New</Other></Field>
                <Field><Rally>In-Progress</Rally>       <Other>Assigned</Other></Field>
                <!-- Etc -->
             </Mappings>
          </OtherEnumFieldHandler>
    </Connector>

请注意,您可能需要进入 Rally 工具为 State 字段/下拉列表定义一些自定义值,以适应 Bugzilla 中状态值的启发式映射。

于 2012-04-20T04:54:04.210 回答