提供自动认领的功能

master
杨海航 4 days ago
parent 481d0c53c9
commit 4acb10b72d
  1. 11
      src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustmentIdentificationMaterialServiceImpl.java
  2. 15
      src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustmentServiceImpl.java

@ -521,9 +521,14 @@ public class EntrustmentIdentificationMaterialServiceImpl extends ServiceImpl<En
throw new RuntimeException("委托不在待审核状态");
}
if (!dlpUser.getId().equals(entrustment.getCheckClaimUser())) {
String uName = this.getUserNameByEntrustUserID(entrustment.getCheckClaimUser());
throw new RuntimeException(String.format("委托的审核任务是由其他人认领的。认领用户是: %s", uName));
// 这里做一下优化,因为我们要去掉委托认领的功能,所以只要当前用户在审核人列表中,就可以进行操作
// if (!dlpUser.getId().equals(entrustment.getCheckClaimUser())) {
// String uName = this.getUserNameByEntrustUserID(entrustment.getCheckClaimUser());
// throw new RuntimeException(String.format("委托的审核任务是由其他人认领的。认领用户是: %s", uName));
// }
if (!dlpUser.getId().equals(entrustment.getCheckCandidateUser())) {
throw new RuntimeException(String.format("你不在可以审核的用户列表中!"));
}
//-------------------

@ -1470,9 +1470,13 @@ public class EntrustmentServiceImpl extends ServiceImpl<EntrustmentMapper, Entru
throw new RuntimeException(String.format("没有找到 id 为 %s 的委托", entrust.getId()));
}
if (!dlpUser.getId().equals(entrustment.getCheckClaimUser())) {
throw new RuntimeException(String.format("委托的审核任务是由其他人认领的。认领用户是: %s", entrustment.getCheckClaimUser()));
// 这里修改一下,我们要去掉委托认领的功能,所以只要用户是在审核列表中的,就可以进行审核操作
if (!dlpUser.getId().equals(entrustment.getCheckCandidateUser())) {
throw new RuntimeException("你不在可以审核的用户列表当中!");
}
// if (!dlpUser.getId().equals(entrustment.getCheckClaimUser())) {
// throw new RuntimeException(String.format("委托的审核任务是由其他人认领的。认领用户是: %s", entrustment.getCheckClaimUser()));
// }
if (entrustment.getStatus() != EntrustmentStatusConstants.ENTRUSTMENT_STATUS_WAITING_CHECK.getStatus()) {
throw new RuntimeException("委托不在待审核状态");
@ -1717,9 +1721,12 @@ public class EntrustmentServiceImpl extends ServiceImpl<EntrustmentMapper, Entru
throw new RuntimeException(String.format("没有找到 id 为 %s 的委托", entrust.getId()));
}
if (!dlpUser.getId().equals(entrustment.getApproveClaimUser())) {
throw new RuntimeException(String.format("委托的审批任务是由其他人认领的。认领用户是: %s", entrustment.getCheckClaimUser()));
if (!dlpUser.getId().equals(entrustment.getCheckCandidateUser())) {
throw new RuntimeException("你不在可以进行审批的用户列表中!");
}
// if (!dlpUser.getId().equals(entrustment.getApproveClaimUser())) {
// throw new RuntimeException(String.format("委托的审批任务是由其他人认领的。认领用户是: %s", entrustment.getCheckClaimUser()));
// }
if (entrustment.getStatus() != EntrustmentStatusConstants.ENTRUSTMENT_STATUS_WAITING_APPROVE.getStatus()) {
throw new RuntimeException("委托不在待审批状态");

Loading…
Cancel
Save