123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.zskk.control;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.Date;
- import java.util.List;
- import java.util.UUID;
- import com.jfinal.core.Controller;
- import com.jfinal.plugin.activerecord.Db;
- import com.jfinal.plugin.activerecord.Record;
- import com.zskk.model.Doctors;
- import com.zskk.model.Exams;
- import com.zskk.model.PatientInfos;
- import com.zskk.model.Report;
- import com.zskk.model.Studies;
- public class ViewController extends Controller {
-
- /**
- * 在被连接数据库执行sql语句
- */
- public void executeSql() {
- try {
- //List<Record> d = Db.use("connected").find(this.getPara("sqlStr"));
- List<Exams> exams = Exams.dao.use("zskk").find("SELECT * FROM pacsonline.exams where exam_status=3 and institution_id=73090001 order by createdAt desc limit 50");
- for (Exams exams2 : exams) {
- Studies studies = Studies.dao.use("zskk").findById(exams2.getStudyId());
- Record record = Db.use("connected").findFirst("select * from caller where STUDYUID=?",studies.getStudyuid());
- Report report = new Report().use("zskk");
- report.setId(creatId());
- report.setReportDatetime(aaa(record.getStr("REPORTDATE")));
- report.setImpression(record.getStr("IMPRESSION"));
- report.setDescription(record.getStr("DESCRIPTION"));
- report.setExamId(exams2.getId());
- report.setCreatedAt(new Date());
- report.setReportResult(record.getStr("FITEM_RESULT_CODE").contains("阴")?"1":"2");
- report.setReportDoctorId(getDoctorIdByName(record.getStr("REPORTDOCTOR")));
- report.setReviewDoctorId(getDoctorIdByName(record.getStr("REVIEWDOCTOR")));
- report.setReviewDatetime(aaa(record.getStr("REPORTDATE")));
- report.setConfirmDoctorId(getDoctorIdByName(record.getStr("REVIEWDOCTOR")));
- report.setConfirmDatetime(aaa(record.getStr("REPORTDATE")));
- report.save();
- PatientInfos patientInfos = PatientInfos.dao.use("zskk").findById(exams2.getPatientId());
- patientInfos.setName(record.getStr("PATIENTNAME"));
- patientInfos.update();
- }
- this.renderJson(exams);
- } catch (Exception e) {
- // TODO: handle exception
- this.renderText(e.getCause().toString()+e.getCause().getMessage().toString());
- }
- }
-
- private String creatId() {
- UUID id=UUID.randomUUID();
- String[] idd=id.toString().split("-");
- return idd[0]+idd[1]+idd[2];
- }
-
- private String getDoctorIdByName(String name) {
- if (name == null) {
- return "1";
- }
- Doctors doctors = Doctors.dao.use("zskk").findFirst("SELECT * FROM doctors where instr(?,realname) and institution_id=73090001",name);
- if (doctors == null) {
- return "1";
- }
- return doctors.getId();
- }
-
- private Date aaa(String timestr) {
- if (timestr == null) {
- return new Date();
- }
- SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- Date date = null;
- try {
- date = sdf.parse(timestr);
- } catch (ParseException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- return date;
- }
-
- }
|