Commit b5d9caa8 by jianan

客户告知书15

parent 1b965bed
...@@ -3734,6 +3734,11 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -3734,6 +3734,11 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
Long id = requestVO.getId(); Long id = requestVO.getId();
String imgStr = requestVO.getImgStr(); String imgStr = requestVO.getImgStr();
try { try {
AgPoInformed dbData = informedMapper.selectByPrimaryKey(id);
if (dbData != null && "1".equals(dbData.getStatus())) {
resp.setCommonResult(new CommonResult(false, "不可重复签署"));
return resp;
}
if (StringUtils.isBlank(imgStr)) { if (StringUtils.isBlank(imgStr)) {
resp.setCommonResult(new CommonResult(false, "file不可为空")); resp.setCommonResult(new CommonResult(false, "file不可为空"));
return resp; return resp;
......
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