这是一个代码:
CM = ComponentManager.getInstance()
worklogManager = CM.getWorklogManager()
for(int i=0; i<=4; i++) {
worklog = new WorklogImpl(worklogManager, issue, null, issue.reporter.name, issue.summary, new Date(), null, null, 1*3600)
worklogManager.create(issue.reporter, worklog, 0L, false)
}
或者
for(int i=0; i<=4; i++) {
params = WorklogInputParametersImpl
.issue( issue )
.startDate(new Date())
.timeSpent('1h')
.comment('123')
.buildNewEstimate()
result = wls.validateCreate(context, params)
wls.createAndAutoAdjustRemainingEstimate(context, result, true)
}
这是一个结果:
5 个工作日志条目,花费 1 小时但已记录:仅显示 1 小时而不是 5 小时
JIRA 6.1 的最新脚本运行插件与 JIRA 5.1.7 的结果相同
有任何想法吗?
谢谢!
谢尔盖