Forráskód Böngészése

fix绩效流程下一步

LLL 1 éve%!(EXTRA string=óta)
szülő
commit
f52b915e9a

+ 2 - 5
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/flowpath/controller/ItdmRunFlowPathStepController.java

@@ -141,11 +141,8 @@ public class ItdmRunFlowPathStepController extends JeecgController<ItdmRunFlowPa
 	 //@RequiresPermissions("org.jeecg.modules:itdm_run_flow_path_step:edit")
 	 @PostMapping(value = "/pass1")
 	 public Result<String> pass1(@RequestBody ItdmPassRunFlowPath itdmRunFlowPathStep) {
-	 	if(itdmRunFlowPathStep.getNextStepUser() != null){
-			itdmRunFlowPathStepService.pass1(itdmRunFlowPathStep);
-			return Result.OK("编辑成功!");
-		} else return Result.error("请选择下一步操作人员!");
-
+		 itdmRunFlowPathStepService.pass1(itdmRunFlowPathStep);
+		 return Result.OK("编辑成功!");
 	 }