123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- package com.zskk.task;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import com.alibaba.fastjson.JSON;
- import com.alibaba.fastjson.JSONArray;
- import com.alibaba.fastjson.JSONObject;
- import com.jfinal.kit.PropKit;
- import com.jfinal.plugin.activerecord.Db;
- import com.jfinal.plugin.activerecord.Record;
- import com.jfinal.plugin.cron4j.ITask;
- import com.zskk.service.DataService;
- import com.zskk.service.ServiceFactory;
- import com.zskk.service.ThreadPoolService;
- public class UpdateTask implements ITask {
- @Override
- public void run() {
- // TODO Auto-generated method stub
- DataService dService = ServiceFactory.getService(DataService.class);
- // JSONArray jsonArray = dService.getExamList(180);
- // for (Object object : jsonArray) {
- // try {
- // JSONObject jsonObject = JSON.parseObject(object.toString());
- List<Record> records = Db.use("connected").find("select top 20 * from reportinfo order by UpDateTime desc");
- for (Record record : records) {
- if (record == null) {
- continue;
- }
- if (record.getStr("IMPRESSION").isBlank() && record.getStr("DESCRIPTION").isBlank()) {
- continue;
- }
- Map<String, String> params = new HashMap<>();
- //1:exam_id 2:patient_num 3:accession_num 4:study_uid
- params.put("type", "2");
-
- params.put("institution_id", PropKit.get("institution_id"));
- params.put("code", record.getStr("PatientId"));
- //报告医生姓名
- params.put("report_doctor_name", record.getStr("ReportDoctor"));
- //报告时间
- params.put("report_datetime",record.getStr("ReportDate"));
- //审核医生姓名
- params.put("review_doctor_name", record.getStr("ReviewDoctor")==null?"":record.getStr("ReviewDoctor"));
- //审核时间
- params.put("review_datetime", record.getStr("ReviewDate"));
- //确认医生姓名
- params.put("confirm_doctor_name", record.getStr("ReviewDoctor")==null?"":record.getStr("ReviewDoctor"));
- //确认时间
- params.put("confirm_datetime", record.getStr("ReviewDate"));
- //意见建议
- params.put("impression", record.getStr("Impression"));
- //影像所见
- params.put("description", record.getStr("Description"));
- //exams表
- //申请科室
- params.put("application_department", record.getStr("ReqDept"));
- //申请医生
- params.put("application_doctor", record.getStr("ReqDoctor"));
- //临床诊断
- params.put("clin_diag", record.getStr("Diagnosis")==null?"":record.getStr("Diagnosis"));
- //症状
- params.put("clin_symp", record.getStr("Symptom")==null?"":record.getStr("Symptom"));
- //patient_infos表
- //患者姓名
- params.put("name", record.getStr("PatName"));
- //患者手机号
- params.put("phone", record.getStr("Phone")==null?"":record.getStr("Phone"));
- //患者身份证号
- params.put("card_num", record.getStr("IDCard")==null?"":record.getStr("IDCard"));
- //检查结果1阴2阳
- params.put("report_result", record.getStr("Result").contains("阳")?"2":"1");
- // params.put("report_result", "");
- //住院号
- params.put("hopitalized_no", record.getStr("InPatientNum"));
- //门诊号
- params.put("out_patient", record.getStr("OutPatientNum"));
- //病人ID
- // params.put("his_patient_id", record.getStr("InPatientNum"));
- //检查方法
- params.put("exam_project", record.getStr("ExamItem"));
- ThreadPoolService tService = ServiceFactory.getService(ThreadPoolService.class);
- tService.execute(() -> {
- dService.saveReport(params);
- });
-
- //匹配支付状态
- if (record.getStr("ExamItem").contains("无片")) {
- JSONObject jsonObject = new JSONObject();
- //机构ID
- jsonObject.put("institution_id", PropKit.get("institution_id"));
- jsonObject.put("patient_num", record.getStr("PatientId"));
- //机构类型:1:accession_num:patient_num
- jsonObject.put("ins_type", "2");
- JSONObject pJsonObject = new JSONObject();
- pJsonObject.put("params", jsonObject.toJSONString());
- tService.execute(() -> {
- dService.fee(pJsonObject);
- });
- }
-
- }
-
- // } catch (Exception e) {
- // // TODO: handle exception
- // continue;
- // }
- // }
- }
- @Override
- public void stop() {
- // TODO Auto-generated method stub
- }
-
- /**
- * 日期字符串格式转换
- * @param dateStr
- * @return
- */
- private String parseStringToDate(String dateStr) {
- if (dateStr == null) {
- return "";
- }
- SimpleDateFormat sdf= new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
- Date date = null;
- String timeString = null;
- try {
- date = sdf.parse(dateStr);
- SimpleDateFormat sdf2= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- timeString = sdf2.format(date);
- } catch (ParseException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- return timeString;
- }
- }
|