This commit is contained in:
jing's 2023-12-18 21:32:49 +08:00
parent 8c2b28999a
commit 43186e2433
1 changed files with 1 additions and 2 deletions

View File

@ -185,9 +185,8 @@ public class EbomApi extends BaseApi {
return ResultVO.error(STATE.ParamErr, "请选择要复核的数据"); return ResultVO.error(STATE.ParamErr, "请选择要复核的数据");
} }
dto.setRevertUserName(SessionUtil.getUserName()); dto.setRevertUserName(SessionUtil.getUserName());
bomNewEbomParentService.designReview(dto); return bomNewEbomParentService.designReview(dto);
return ResultVO.success(true);
} }