|
@ -142,6 +142,8 @@ public class DailyReportUploadPoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(value = "doctorId", required = true) String doctorId,
|
|
|
@ApiParam(name = "reportID", value = "reportID")
|
|
|
@RequestParam(value = "reportID", required = true) String reportID,
|
|
|
@ApiParam(name = "leaderComment", value = "leaderComment")
|
|
|
@RequestParam(value = "leaderComment", required = false) String leaderComment,
|
|
|
@ApiParam(name = "jsonData", value = "事项信息实体")
|
|
|
@RequestParam(value = "jsonData", required = false) String jsonData) {
|
|
|
try {
|
|
@ -149,7 +151,7 @@ public class DailyReportUploadPoint extends EnvelopRestEndpoint {
|
|
|
if (StringUtils.isNoneBlank(jsonData)){
|
|
|
healthUploadDOs = JSONArray.parseArray(jsonData,BaseDailyReportDetailDO.class);
|
|
|
}
|
|
|
BaseDailyReportUploadDO dailyReport = dailyReportUploadService.verifiedItem(doctorId,reportID,healthUploadDOs);
|
|
|
BaseDailyReportUploadDO dailyReport = dailyReportUploadService.verifiedItem(doctorId,reportID,healthUploadDOs,leaderComment);
|
|
|
return success(dailyReport);
|
|
|
} catch (Exception e) {
|
|
|
return failedObjEnvelopException(e);
|