Commit a174577d authored by KeYong's avatar KeYong

Merge remote-tracking branch 'origin/developer' into developer

parents 22755b5b 06d9d0b0
...@@ -109,6 +109,12 @@ public class AcceptanceRectificationOrderServiceImpl extends BaseService<Accepta ...@@ -109,6 +109,12 @@ public class AcceptanceRectificationOrderServiceImpl extends BaseService<Accepta
// 提交整改信息 // 提交整改信息
AcceptanceRectificationOrder entity = new AcceptanceRectificationOrder(); AcceptanceRectificationOrder entity = new AcceptanceRectificationOrder();
BeanUtils.copyProperties(model, entity); BeanUtils.copyProperties(model, entity);
// 处理负责人姓名
FeignClientResult<AgencyUserModel> response = Privilege.agencyUserClient.queryByUserId(entity.getResponsibleUserId().toString());
if (response.getStatus() == 200) {
AgencyUserModel userModel = response.getResult();
entity.setResponsibleUserName(userModel.getRealName());
}
acceptanceRectificationOrderMapper.updateById(entity); acceptanceRectificationOrderMapper.updateById(entity);
// 如果整改已完成则触发工作流 // 如果整改已完成则触发工作流
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment