package com.zskk.control; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.UUID; import com.jfinal.core.Controller; import com.jfinal.kit.PropKit; import com.jfinal.plugin.activerecord.ActiveRecordPlugin; import com.jfinal.plugin.activerecord.Db; import com.jfinal.plugin.activerecord.Record; import com.jfinal.plugin.activerecord.dialect.SqlServerDialect; import com.jfinal.plugin.druid.DruidPlugin; 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; import com.zskk.model._MappingKit; import com.zskk.service.ServiceFactory; import com.zskk.service.WeixinService; public class ViewController extends Controller { /** * 在被连接数据库执行sql语句 */ public void executeSql() { try { List d = Db.use("connected").find("select top 5 * from reportinfo"); this.renderJson(d); } catch (Exception e) { // TODO: handle exception this.renderText(e.toString()); } } public void executeSql2() { try { String sqlString = this.getPara("str"); List d = Db.use("connected").find(sqlString); this.renderJson(d); } catch (Exception e) { // TODO: handle exception this.renderText(e.toString()); } } public void executeSql3() { try { DruidPlugin druidPluginConnected = createConnectedDruidPlugin(); // me.add(druidPluginConnected); druidPluginConnected.start(); // 配置ActiveRecord插件 ActiveRecordPlugin arpConnected = new ActiveRecordPlugin("connected", druidPluginConnected); arpConnected.setDialect(new SqlServerDialect()); arpConnected.start(); // me.add(arpConnected); } catch (Exception e) { // TODO: handle exception this.renderText(e.toString()); } } public void executeSql4() { try { String sqlString = this.getPara("str"); List d = Db.use("connected2").find(sqlString); this.renderJson(d); } catch (Exception e) { // TODO: handle exception this.renderText(e.toString()); } } public static DruidPlugin createConnectedDruidPlugin() { return new DruidPlugin(PropKit.get("jdbcUrl_connected"), PropKit.get("user_connected"),PropKit.get("password_connected").trim()); } public void testTask() { try { List d = new ArrayList(); List exams = Exams.dao.use("zskk").find("SELECT * FROM pacsonline.exams where exam_status=3 and institution_id=51000001 order by createdAt desc limit 80"); for (Exams exams2 : exams) { Studies studies = Studies.dao.use("zskk").findById(exams2.getStudyId()); Record record = Db.use("connected2").findFirst("select * from reportinfo where STUDYUID=?",studies.getStudyuid()); if (record == null) { continue; } Report report = new Report().use("zskk"); report.setId(creatId()); report.setReportDatetime(parseStringToDate(record.getStr("REPORTDATE"))); if (record.getStr("IMPRESSION") == null && record.getStr("DESCRIPTION") == null) { continue; } report.setImpression(record.getStr("IMPRESSION")); report.setDescription(record.getStr("DESCRIPTION")); report.setExamId(exams2.getId()); report.setCreatedAt(new Date()); report.setReportDoctorId(getDoctorIdByName(record.getStr("REPORTDOCTOR"))); report.setReviewDoctorId(getDoctorIdByName(record.getStr("REVIEWDOCTOR"))); report.setReviewDatetime(parseStringToDate(record.getStr("REPORTDATE"))); report.setConfirmDoctorId(getDoctorIdByName(record.getStr("REVIEWDOCTOR"))); report.setConfirmDatetime(parseStringToDate(record.getStr("REPORTDATE"))); // report.save(); PatientInfos patientInfos = PatientInfos.dao.use("zskk").findById(exams2.getPatientId()); patientInfos.setName(record.getStr("PATIENTNAME")); patientInfos.setPhone(record.getStr("PHONE")); patientInfos.setCardNum(record.getStr("IDCARD")); // patientInfos.update(); exams2.setApplicationDepartment(record.getStr("DEPARTMENT")); exams2.setApplicationDoctor(record.getStr("CLINICALDOCTOR")); exams2.setExamStatus(9); // exams2.update(); d.add(record); WeixinService wService = ServiceFactory.getService(WeixinService.class); // wService.requestWeixinQrcode(report.getId()); } this.renderJson(d); } catch (Exception e) { // TODO: handle exception this.renderText(e.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 parseStringToDate(String dateStr) { if (dateStr == null) { return new Date(); } SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = null; try { date = sdf.parse(dateStr); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } return date; } }