|
@@ -168,12 +168,12 @@ public class ViewController extends Controller {
|
|
|
params.put("review_doctor_name",
|
|
|
record.getStr("reviewdoctor") == null ? "" : record.getStr("reviewdoctor"));
|
|
|
// 审核时间
|
|
|
- params.put("review_datetime", record.getStr("reportdate"));
|
|
|
+ params.put("review_datetime", record.getStr("reportcheck"));
|
|
|
// 确认医生姓名
|
|
|
params.put("confirm_doctor_name",
|
|
|
record.getStr("reviewdoctor") == null ? "" : record.getStr("reviewdoctor"));
|
|
|
// 确认时间
|
|
|
- params.put("confirm_datetime", record.getStr("reportdate"));
|
|
|
+ params.put("confirm_datetime", record.getStr("reportcheck"));
|
|
|
// 意见建议
|
|
|
params.put("impression", record.getStr("impression"));
|
|
|
// 影像所见
|
|
@@ -200,6 +200,13 @@ public class ViewController extends Controller {
|
|
|
params.put("hopitalized_no", "");
|
|
|
|
|
|
String x =dService.saveReport(params);
|
|
|
+ Map<String, String> annex_params = new HashMap<>();
|
|
|
+ annex_params.put("institution_id", PropKit.get("institution_id"));
|
|
|
+ annex_params.put("type", "4");
|
|
|
+ annex_params.put("code", record.getStr("studyuid"));
|
|
|
+ //附件类型1.mp4 2.pdf 3.jpeg
|
|
|
+ annex_params.put("annex_class_code", "3");
|
|
|
+ dService.saveAnnex(annex_params, record.getStr("reportpath"));
|
|
|
renderText(x);
|
|
|
|
|
|
|