产品角色等
This commit is contained in:
@@ -13,6 +13,7 @@ public enum UserType {
|
||||
UI(7, "UI工程师"),
|
||||
XMJL(8, "项目经理"),
|
||||
XMZL(9, "项目助理"),
|
||||
CPJL(10, "产品经理"),
|
||||
;
|
||||
|
||||
@EnumValue
|
||||
|
||||
@@ -105,6 +105,14 @@ public class ZtProjectQo extends BaseQo {
|
||||
private String spec;
|
||||
|
||||
private String bugType;
|
||||
/**
|
||||
* 测试人员
|
||||
*/
|
||||
private String testUser;
|
||||
/**
|
||||
* 产品人员
|
||||
*/
|
||||
private String productUser;
|
||||
|
||||
private String account;
|
||||
//1 延期 2不延期
|
||||
|
||||
@@ -996,6 +996,12 @@ public class ZtTaskServiceImpl extends ServiceImpl<ZtTaskMapper, ZtTask> impleme
|
||||
actionService.addAction(ActionType.RW, ActionStatus.TJJFW, dto.getId(), projectproduct == null ? null : projectproduct.getProduct().toString(), projectproduct == null ? null : projectproduct.getProject(), ztTask.getExecution(),
|
||||
StringUtils.isEmpty(finishBy) ? RiskUserThreadLocal.get().getName() : finishBy, dto.getDeliverContent(), null);
|
||||
if(ztTask.getStory()!=null&&ztTask.getStory()!=0){
|
||||
//更新需求交付物
|
||||
ZtStory ztStory = this.storyService.getById(ztTask.getStory());
|
||||
if(ztStory!=null){
|
||||
ztStory.setDeliverContent(ztTask.getDeliverContent());
|
||||
this.storyService.updateById(ztStory);
|
||||
}
|
||||
actionService.addAction(ActionType.XQ, ActionStatus.TJJFW, dto.getId(), projectproduct == null ? null : projectproduct.getProduct().toString(), projectproduct == null ? null : projectproduct.getProject(), ztTask.getExecution(),
|
||||
StringUtils.isEmpty(finishBy) ? RiskUserThreadLocal.get().getName() : finishBy, dto.getDeliverContent(), null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user