ChangeSignJob.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. package com.yihu.wlyy.job;
  2. import com.yihu.wlyy.entity.organization.Hospital;
  3. import com.yihu.wlyy.entity.address.Town;
  4. import com.yihu.wlyy.entity.doctor.profile.Doctor;
  5. import com.yihu.wlyy.entity.job.QuartzJobLog;
  6. import com.yihu.wlyy.entity.patient.SignFamily;
  7. import com.yihu.wlyy.entity.statistics.WlyyQuotaResult;
  8. import com.yihu.wlyy.repository.address.TownDao;
  9. import com.yihu.wlyy.repository.doctor.DoctorDao;
  10. import com.yihu.wlyy.repository.job.QuartzJobLogDao;
  11. import com.yihu.wlyy.repository.organization.HospitalDao;
  12. import com.yihu.wlyy.repository.patient.SignFamilyDao;
  13. import com.yihu.wlyy.repository.statistics.WlyyQuotaResultDao;
  14. import com.yihu.wlyy.web.quota.WlyyJobConfigVO;
  15. import com.yihu.wlyy.web.quota.WlyyQuotaVO;
  16. import org.quartz.Job;
  17. import org.quartz.JobDataMap;
  18. import org.quartz.JobExecutionContext;
  19. import org.quartz.JobExecutionException;
  20. import org.springframework.beans.factory.annotation.Autowired;
  21. import org.springframework.jdbc.core.JdbcTemplate;
  22. import org.springframework.stereotype.Component;
  23. import org.springframework.transaction.annotation.Transactional;
  24. import org.springframework.util.StringUtils;
  25. import org.springframework.web.context.support.SpringBeanAutowiringSupport;
  26. import java.text.SimpleDateFormat;
  27. import java.util.*;
  28. /**
  29. * 已改簽的指标执行类
  30. */
  31. @Component
  32. public class ChangeSignJob implements Job {
  33. private WlyyQuotaVO wlyyQuota;//指标对象
  34. private WlyyJobConfigVO wlyyJobConfig;//配置对象
  35. @Autowired
  36. private WlyyQuotaResultDao wlyyQuotaResultDao;//指标结果Dao
  37. @Autowired
  38. private QuartzJobLogDao quartzJobLogDao;//执行日志Dao
  39. @Autowired
  40. private SignFamilyDao signFamilyDao;
  41. @Autowired
  42. private DoctorDao doctorDao;
  43. @Autowired
  44. private HospitalDao hospitalDao;
  45. @Autowired
  46. private TownDao townDao;
  47. @Autowired
  48. private JdbcTemplate jdbcTemplate;
  49. String yesterday;
  50. String now;
  51. public void execute(JobExecutionContext context)
  52. throws JobExecutionException {
  53. SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
  54. //初始化参数
  55. JobDataMap map = context.getJobDetail().getJobDataMap();
  56. wlyyQuota = (WlyyQuotaVO) map.get("quota");
  57. wlyyJobConfig = (WlyyJobConfigVO) map.get("jobConfig");
  58. now= StringUtils.isEmpty(map.get("now"))?SignJob.getDayString(0):map.get("now").toString();
  59. yesterday= StringUtils.isEmpty(map.get("yesterday"))?SignJob.getDayString(-1):map.get("yesterday").toString();
  60. //计算指标
  61. computequota();
  62. }
  63. /**
  64. * 计算指标
  65. */
  66. @Transactional
  67. private void computequota() {
  68. jdbcTemplate.execute("delete from wlyy_quota_result where quota_date='"+yesterday+"' and quato_code='"+10+"'");
  69. //新建任务日志对象
  70. QuartzJobLog quartzJobLog = new QuartzJobLog();
  71. quartzJobLog.setJobStartTime(new Date());
  72. quartzJobLog.setJobId(wlyyJobConfig.getId());
  73. quartzJobLog.setJobName(wlyyJobConfig.getJobName());
  74. //查找出系统全部的全科医生
  75. List<Doctor> doctors = doctorDao.findAllQKDoctot();
  76. Map<String, Doctor> doctorsMap = new HashMap<String, Doctor>();
  77. for (Doctor doctor : doctors) {
  78. doctorsMap.put(doctor.getCode(), doctor);
  79. }
  80. //查找出系统全部的机构
  81. List<Hospital> hospitals = hospitalDao.findHospital2();
  82. Map<String, Hospital> hospitalsMap = new HashMap<String, Hospital>();
  83. for (Hospital hospital : hospitals) {
  84. hospitalsMap.put(hospital.getCode(), hospital);
  85. }
  86. //查找出厦门市全部的区
  87. List<Town> towns = townDao.findByCityCode(Constant.city);
  88. Map<String, Town> townsMap = new HashMap<String, Town>();
  89. for (Town town : towns) {
  90. townsMap.put(town.getCode(), town);
  91. }
  92. //找出今天的已改簽信息
  93. List<SignFamily> signFamilys = signFamilyDao.findByJiatingChaangeSignYesterday(yesterday,now);
  94. Map<String, Long> tjTownMap = new HashMap<String, Long>();//区级的统计map key 是区行政区划350200
  95. Map<String, Long> tjOrgMap = new HashMap<String, Long>();//机构的统计map key 是机构的code
  96. Map<String, Long> tjQkdoctorMap = new HashMap<String, Long>();//团队级的统计map 目前没有团队 先用全科医生统一 key doctorCode
  97. Long cityCount = 0L;
  98. //统计有已改簽的
  99. for (SignFamily signFamily : signFamilys) {
  100. String doctorCode = signFamily.getDoctor();//得到已改簽中全科医生的code
  101. //统计团队
  102. compute(tjQkdoctorMap, doctorCode);
  103. //判断医生属于哪个机构
  104. Doctor doctor = doctorsMap.get(doctorCode);
  105. String orgCode = doctor.getHospital();
  106. //统计机构
  107. if(!"00".equals(orgCode.substring(orgCode.length()-2,orgCode.length()))){
  108. //统计站
  109. String orgCodeTemp=orgCode.substring(0,orgCode.length()-2)+"00";
  110. compute(tjOrgMap, orgCodeTemp);
  111. }else{
  112. //统计社区
  113. compute(tjOrgMap, orgCode);
  114. }
  115. Hospital hospital=hospitalsMap.get(doctor.getHospital());
  116. String townCode = hospital.getTown();
  117. //统计区
  118. compute(tjTownMap, townCode);
  119. //统计市
  120. cityCount++;
  121. }
  122. //保存统计的结果
  123. //保存全科医生的已改簽统计
  124. //保存全科医生的改签统计
  125. for (Map.Entry<String, Doctor> entry : doctorsMap.entrySet()) {
  126. Doctor doctor = doctorsMap.get(entry.getKey());//得到全科医生
  127. Hospital hospital = hospitalsMap.get(doctor.getHospital());//得到全科医生的机构
  128. String city=Constant.city;
  129. String cityName=Constant.cityName;
  130. String town=hospital.getTown();
  131. String townName=hospital.getTownName();
  132. String org=doctor.getHospital();
  133. String orgName=doctor.getHosptialName();
  134. String doctorCode=doctor.getCode();
  135. String doctorName=doctor.getName();
  136. String doctorJob=doctor.getJob();
  137. String level="1";
  138. String key=doctor.getCode();
  139. save(tjQkdoctorMap, key, city, cityName, town, townName, org, orgName, doctorCode, doctorName, doctorJob, level);
  140. }
  141. //保存机构的改签统计
  142. for (Map.Entry<String, Hospital> entry : hospitalsMap.entrySet()) {
  143. Hospital hospital = hospitalsMap.get(entry.getKey());//得到全科医生
  144. String city=Constant.city;
  145. String cityName=Constant.cityName;
  146. String town=hospital.getTown();
  147. String townName=hospital.getTownName();
  148. String org=hospital.getCode();
  149. String orgName=hospital.getName();
  150. String doctorCode="";
  151. String doctorName="";
  152. String doctorJob="";
  153. String level="2";
  154. String key=hospital.getCode();
  155. save(tjOrgMap, key, city, cityName, town, townName, org, orgName, doctorCode, doctorName, doctorJob, level);
  156. }
  157. //保存区级的改签统计
  158. for (Map.Entry<String, Town> entry : townsMap.entrySet()) {
  159. Town townObj = townsMap.get(entry.getKey());//得到全科医生
  160. String city=Constant.city;
  161. String cityName=Constant.cityName;
  162. String town=townObj.getCode();
  163. String townName=townObj.getName();
  164. String org="";
  165. String orgName="";
  166. String doctorCode="";
  167. String doctorName="";
  168. String doctorJob="";
  169. String level="3";
  170. String key=townObj.getCode();
  171. save(tjTownMap, key, city, cityName, town, townName, org, orgName, doctorCode, doctorName, doctorJob, level);
  172. }
  173. //保存市级的统计
  174. {
  175. WlyyQuotaResult wlyyQuotaResult = new WlyyQuotaResult();
  176. wlyyQuotaResult.setDel("1");
  177. wlyyQuotaResult.setCity(Constant.city);
  178. wlyyQuotaResult.setCityName(Constant.cityName);
  179. wlyyQuotaResult.setQuatoCode(wlyyQuota.getId());
  180. wlyyQuotaResult.setQuatoName(wlyyQuota.getName());
  181. wlyyQuotaResult.setQuotaDate(getYesterday());
  182. wlyyQuotaResult.setCreateTime(new Date());
  183. wlyyQuotaResult.setLevel1Type("4");
  184. //判断全科医生是否有改签量
  185. if (cityCount > 0) {
  186. wlyyQuotaResult.setResult(cityCount + "");
  187. } else {
  188. wlyyQuotaResult.setResult("0");
  189. }
  190. wlyyQuotaResultDao.save(wlyyQuotaResult);
  191. }
  192. quartzJobLog.setJobEndTime(new Date());
  193. quartzJobLog.setJobContent("统计"+getYesterday()+" 的已改簽数据完成 ,得到改签数目:"+signFamilys.size());
  194. quartzJobLog.setJobType("1");
  195. quartzJobLogDao.save(quartzJobLog);
  196. }
  197. /**
  198. * 统计规则
  199. * @param tjQkdoctorMap
  200. * @param doctorCode
  201. */
  202. private void compute(Map<String, Long> tjQkdoctorMap, String doctorCode) {
  203. if (tjQkdoctorMap.containsKey(doctorCode)) {
  204. tjQkdoctorMap.put(doctorCode, tjQkdoctorMap.get(doctorCode) + 1);
  205. } else {
  206. tjQkdoctorMap.put(doctorCode, 1L);
  207. }
  208. }
  209. /**
  210. * 保存方案
  211. * @param countMap
  212. * @param key
  213. * @param city
  214. * @param cityName
  215. * @param town
  216. * @param townName
  217. * @param org
  218. * @param orgName
  219. * @param doctorCode
  220. * @param doctorName
  221. * @param doctorJob
  222. * @param level
  223. */
  224. private void save(Map<String, Long> countMap, String key, String city, String cityName, String town, String townName, String org, String orgName, String doctorCode, String doctorName, String doctorJob, String level) {
  225. WlyyQuotaResult wlyyQuotaResult = new WlyyQuotaResult();
  226. wlyyQuotaResult.setDel("1");
  227. wlyyQuotaResult.setOrgCode(org);
  228. wlyyQuotaResult.setOrgName(orgName);
  229. wlyyQuotaResult.setCity(city);
  230. wlyyQuotaResult.setCityName(cityName);
  231. wlyyQuotaResult.setQuatoCode(wlyyQuota.getId());
  232. wlyyQuotaResult.setQuatoName(wlyyQuota.getName());
  233. wlyyQuotaResult.setQuotaDate(getYesterday());
  234. wlyyQuotaResult.setCreateTime(new Date());
  235. wlyyQuotaResult.setQkdoctorJobName(doctorJob);
  236. wlyyQuotaResult.setQkdoctorName(doctorName);
  237. wlyyQuotaResult.setQkdoctorCode(doctorCode);
  238. wlyyQuotaResult.setTown(town);
  239. wlyyQuotaResult.setTownName(townName);
  240. wlyyQuotaResult.setLevel1Type(level);
  241. //判断全科医生是否有改签量
  242. if (countMap.containsKey(key)) {
  243. wlyyQuotaResult.setResult(countMap.get(key) + "");
  244. } else {
  245. wlyyQuotaResult.setResult("0");
  246. }
  247. wlyyQuotaResultDao.save(wlyyQuotaResult);
  248. }
  249. public String getYesterday() {
  250. Calendar cal = Calendar.getInstance();
  251. cal.add(Calendar.DATE, -1);
  252. String yesterday = new SimpleDateFormat("yyyy-MM-dd").format(cal.getTime());
  253. return yesterday;
  254. }
  255. }