用户需求验收人,问题反馈
This commit is contained in:
@ -91,7 +91,7 @@ public class ZtStoryUserController {
|
||||
eq.in(ZtStoryUser::getStatus, UserStoryEnums.CFM.getCode(),UserStoryEnums.KFZ.getCode());
|
||||
}
|
||||
eq.select(ZtStoryUser::getId,ZtStoryUser::getTitle,ZtStoryUser::getProduct,
|
||||
ZtStoryUser::getOpenedby,ZtStoryUser::getAssignedto
|
||||
ZtStoryUser::getOpenedby,ZtStoryUser::getAssignedto,ZtStoryUser::getYsUser
|
||||
);
|
||||
List<ZtStoryUser> list = storyUserService.list(eq
|
||||
);
|
||||
|
@ -200,6 +200,10 @@ public class ZtStoryUserDTO implements Serializable {
|
||||
* 1通过 2不通过
|
||||
*/
|
||||
private Integer ysFlag;
|
||||
/**
|
||||
* 验收人
|
||||
*/
|
||||
private String ysUser;
|
||||
|
||||
|
||||
private String spec;
|
||||
|
@ -208,6 +208,10 @@ public class ZtStoryUser implements Serializable {
|
||||
* 1通过 2不通过
|
||||
*/
|
||||
private Integer ysFlag;
|
||||
/**
|
||||
* 验收人
|
||||
*/
|
||||
private String ysUser;
|
||||
private String ysRemark;
|
||||
private String spec;
|
||||
|
||||
|
@ -510,6 +510,7 @@ public class ZtStoryFeedbackServiceImpl extends ServiceImpl<ZtStoryFeedbackMappe
|
||||
if ("wait".equals(status)) {
|
||||
ztStoryFeedback.setHandDate(new Date());
|
||||
ztStoryFeedback.setStatus("doing");
|
||||
ztStoryFeedback.setYsFlag(0);
|
||||
this.baseMapper.updateById(ztStoryFeedback);
|
||||
//添加action
|
||||
actionService.addAction(ActionType.WTFK, ActionStatus.KSCL, ztStoryFeedback.getId(), ztStoryFeedback.getProduct() + "", null, null,
|
||||
|
@ -139,7 +139,7 @@
|
||||
s.ps_date,
|
||||
s.deliver_remark,
|
||||
s.old_status,
|
||||
|
||||
s.ys_user,
|
||||
|
||||
pt.name productName from zt_story_user s LEFT JOIN zt_product pt on s.product = pt.id WHERE 1=1
|
||||
|
||||
|
Reference in New Issue
Block a user