|
@@ -571,6 +571,9 @@ public class CwProjectReportService extends ServiceImpl<CwProjectReportMapper, C
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if(StringUtils.isEmpty(li.getSignatureAnnotatorStatus())){
|
|
|
+ li.setSignatureAnnotatorStatus("0");
|
|
|
+ }
|
|
|
});
|
|
|
return list;
|
|
|
|
|
@@ -3242,10 +3245,20 @@ public class CwProjectReportService extends ServiceImpl<CwProjectReportMapper, C
|
|
|
return "修改成功";
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 通过报告id查找修改签字注师历史记录
|
|
|
+ * @param reportId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
public List<CwSignatureAnnotator> getSignatureAnnotatorList(String reportId) {
|
|
|
return cwProjectReportSignatureMapper.getSignatureAnnotatorList(reportId);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 修改签字注师并保存记录
|
|
|
+ * @param reportData
|
|
|
+ * @return
|
|
|
+ */
|
|
|
public String saveSignatureAnnotator(CwProjectReportData reportData) {
|
|
|
CwProjectReport report = cwProjectReportService.getById(reportData.getId());
|
|
|
if (ObjectUtil.isNotEmpty(report)){
|