Commit 4b14037b authored by fangxinjiang's avatar fangxinjiang

派单审核 非待审核状态 禁止操作

parent f54c3cbb
......@@ -3088,6 +3088,10 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
errorList.add(new ErrorMessage(-1, "找不到员工社保派单数据:" + dis.getEmpName()));
continue;
}
if (!CommonConstants.ONE_STRING.equals(dis.getStatus())){
errorList.add(new ErrorMessage(-1, "派单非待审核状态,禁止操作:" + dis.getEmpName()));
continue;
}
if (null != socialInfo) {
// 派增审核
if (CommonConstants.dingleDigitStrArray[0].equals(dis.getType())){
......
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