修改重评发起接口增加采购经理信息字段
This commit is contained in:
@ -83,4 +83,13 @@ public class Approve implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "合作方用户提交审批下一步送审人员信息")
|
||||
private List<StandardNextParticipantVO> standardNextParticipants;
|
||||
|
||||
@ApiModelProperty(value = "采购经理")
|
||||
private String undertaker;
|
||||
|
||||
@ApiModelProperty(value = "采购经理编号")
|
||||
private String undertakerCode;
|
||||
|
||||
@ApiModelProperty(value = "联系电话")
|
||||
private String telNo;
|
||||
}
|
||||
|
@ -257,6 +257,9 @@ public class ProjectReEvaluationServiceImpl extends BaseServiceImpl<ProjectReEva
|
||||
standardNextParticipants.add(participantVO);
|
||||
|
||||
approve.setStandardNextParticipants(standardNextParticipants);
|
||||
approve.setUndertaker(record.getOwnerContactName());
|
||||
approve.setUndertakerCode(record.getOwnerContactId());
|
||||
approve.setTelNo(record.getOwnerContactTel());
|
||||
|
||||
log.info("访问重新评审流程初始化接口参数:"+ JsonUtils.objectToJson(approve));
|
||||
BaseResponse<ProjectReEvaluationTaskVO> response = wfapApi.start(approve);
|
||||
|
Reference in New Issue
Block a user