song 1 week ago
parent
commit
e2c8164d6b

+ 6 - 1
src/main/java/com/dashitech/businessdata/dao/IDepartmentDAO.java

@@ -45,4 +45,9 @@ public interface IDepartmentDAO extends JpaRepository<DepartmentEntity, String>
45 45
 
46 46
     @Query(value = "SELECT id FROM itsm_uc_hospital WHERE _hos_no =?1 AND delete_flag = 0 ", nativeQuery = true)
47 47
     Long getHosIdByCode(String gender);
48
-}
48
+
49
+    @Query(value = "SELECT * FROM itsm_uc_dept g WHERE g.many_phone like CONCAT('%',:phone,'%') AND g.delete_flag = 0 limit 1", nativeQuery = true)
50
+    DepartmentEntity getDeptByPhone(@Param("phone")String phone);
51
+
52
+
53
+}

+ 12 - 0
src/main/java/com/dashitech/businessdata/entity/CallLogEntity.java

@@ -67,6 +67,10 @@ public class CallLogEntity implements Serializable {
67 67
     @Column(name = "hos_id")
68 68
     private Integer hosId;
69 69
 
70
+    @I18n("来电科室id")
71
+    @Column(name = "call_dept_id")
72
+    private Long callDeptId;
73
+
70 74
     public Integer getHosId() {
71 75
         return hosId;
72 76
     }
@@ -163,6 +167,14 @@ public class CallLogEntity implements Serializable {
163 167
         this.version = version;
164 168
     }
165 169
 
170
+    public Long getCallDeptId() {
171
+        return callDeptId;
172
+    }
173
+
174
+    public void setCallDeptId(Long callDeptId) {
175
+        this.callDeptId = callDeptId;
176
+    }
177
+
166 178
     @Override
167 179
     public String toString() {
168 180
         return "CallLogEntity{" + "id=" + id + ", version=" + version + ", callDept='" + callDept + '\'' + ", phyIDA='" + phyIDA + '\'' + ", dTMFA='" + dTMFA + '\'' + ", dTMFB='" + dTMFB + '\'' + ", responseTime=" + responseTime + ", longTime='" + longTime + '\'' + ", path='" + path + '\'' + ", callType=" + callType + ", callState=" + callState + ", hosId=" + hosId + '}';

+ 30 - 22
src/main/java/com/dashitech/callcenter/socket/HandlerThread.java

@@ -3,10 +3,13 @@ package com.dashitech.callcenter.socket;
3 3
 import com.dashitech.businessdata.dao.*;
4 4
 import com.dashitech.businessdata.entity.CallLogEntity;
5 5
 import com.dashitech.businessdata.entity.CallRecordEntity;
6
+import com.dashitech.businessdata.entity.DepartmentEntity;
6 7
 import com.dashitech.businessdata.entity.HospitalConfig;
7 8
 import com.dashitech.callcenter.webSocket.service.PhoneWebSocket;
8 9
 import com.dashitech.hsms.dao.IHsmsCallLogDAO;
10
+import com.dashitech.hsms.dao.IHsmsDepartmentDAO;
9 11
 import com.dashitech.hsms.entity.HsmsCallLogEntity;
12
+import com.dashitech.hsms.entity.HsmsDepartmentEntity;
10 13
 import com.dashitech.utils.DateUtil2;
11 14
 import com.dashitech.utils.JsonUtil;
12 15
 import com.dashitech.utils.PropertiesUtil;
@@ -73,6 +76,12 @@ public class HandlerThread  {
73 76
         HandlerThread.hospitalConfigDAO = hospitalConfigDAO;
74 77
     }
75 78
 
79
+    private static IHsmsDepartmentDAO hsmsDepartmentDAO;
80
+    @Autowired
81
+    public static void setHsmsDepartmentDAO(IHsmsDepartmentDAO hsmsDepartmentDAO) {
82
+        HandlerThread.hsmsDepartmentDAO = hsmsDepartmentDAO;
83
+    }
84
+
76 85
     private static String project;
77 86
     private static String projectMain;
78 87
     private static String recordNginxPath;
@@ -318,7 +327,7 @@ public class HandlerThread  {
318 327
             if (callLog!=null){
319 328
                 if (jsonObject.containsKey("dtmfa")&& StringUtils.isNotEmpty(jsonObject.get("dtmfa").toString())&&!jsonObject.get("dtmfa").toString().equals("")&&!jsonObject.get("dtmfa").toString().equals(" ")){
320 329
                     // 查询科室信息 并赋值
321
-                    callLog.setCallDept(getDeptByDTMFA(jsonObject.get("dtmfa").toString()));
330
+                    getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog);
322 331
                 }else {
323 332
                     callLog.setCallDept("暂无");
324 333
                 }
@@ -357,7 +366,7 @@ public class HandlerThread  {
357 366
         }
358 367
         if (jsonObject.containsKey("dtmfa")) {
359 368
             callLog.setdTMFA(jsonObject.get("dtmfa").toString());
360
-            callLog.setCallDept(getDeptByDTMFA(jsonObject.get("dtmfa").toString()));
369
+            getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog);
361 370
         }
362 371
         if (jsonObject.containsKey("dtmfb")){
363 372
             callLog.setdTMFB(jsonObject.get("dtmfb").toString());
@@ -395,7 +404,7 @@ public class HandlerThread  {
395 404
                 }
396 405
                 if (jsonObject.containsKey("DTMFA")){
397 406
                     callLog.setdTMFA(jsonObject.get("DTMFA").toString());
398
-                    callLog.setCallDept(getDeptByDTMFA(jsonObject.get("DTMFA").toString()));
407
+                    getDeptByDTMFA(jsonObject.get("DTMFA").toString(), callLog);
399 408
                 }
400 409
                 if (jsonObject.containsKey("DTMFB")){
401 410
                     callLog.setdTMFB(jsonObject.get("DTMFB").toString());
@@ -444,37 +453,36 @@ public class HandlerThread  {
444 453
         }
445 454
     }
446 455
 
447
-    private String getDeptByDTMFA(String phone){
456
+    private void getDeptByDTMFA(String phone,CallLogEntity callLog){
448 457
         try {
449
-            if (phone!=null){
450
-                phone = phone.trim();
451
-                if (phone.equals("")){
452
-                    return "暂无";
453
-                }
458
+            if (StringUtils.isNotBlank(phone)){
454 459
                 //给来电科室赋值
455 460
                 String deptName = "";
461
+                Long deptId = null;
456 462
                 if("HSMS".equals(projectMain)) {
457
-                    deptName = hsmsCallLogDAO.getDeptNameByPhone(phone);
463
+                    HsmsDepartmentEntity dept = hsmsDepartmentDAO.getDeptByPhone(phone);
464
+                    deptName = dept.getDept();
465
+                    deptId = dept.getId();
458 466
                 } else {    //其它,以运维项目为主
459
-                    deptName = departmentDAO.getDeptNameByPhone(phone);
467
+                    DepartmentEntity dept = departmentDAO.getDeptByPhone(phone);
468
+                    deptName = dept.getDept();
469
+                    deptId = dept.getId();
460 470
                 }
461 471
 
462
-                if (deptName!=null&&!deptName.equals("")){
463
-                    return deptName;
464
-                }else {
465
-               /*     String deptName2 = departmentDAO.getDeptNameByWorkOrderPhone(phone);
466
-                    if (deptName2!=null&&!deptName2.equals("")){
467
-                        return deptName2;
468
-                    }else {
469
-                        return "暂无";
470
-                    }*/
471
-                    return "暂无";
472
+                if (StringUtils.isNotBlank(deptName)) {
473
+                    callLog.setCallDept(deptName);
474
+                } else {
475
+                    callLog.setCallDept("暂无");
476
+                }
477
+                if (deptId != null) {
478
+                    callLog.setCallDeptId(deptId);
472 479
                 }
480
+            } else {
481
+                callLog.setCallDept("暂无");
473 482
             }
474 483
         }catch (Exception e){
475 484
             e.printStackTrace();
476 485
         }
477
-        return "暂无";
478 486
     }
479 487
 
480 488
     /**

+ 22 - 0
src/main/java/com/dashitech/hsms/dao/IHsmsDepartmentDAO.java

@@ -0,0 +1,22 @@
1
+package com.dashitech.hsms.dao;
2
+
3
+import com.dashitech.hsms.entity.HsmsDepartmentEntity;
4
+import org.springframework.data.jpa.repository.JpaRepository;
5
+import org.springframework.data.jpa.repository.Query;
6
+import org.springframework.data.repository.query.Param;
7
+import org.springframework.stereotype.Repository;
8
+
9
+/**
10
+ * Created by chi on 2019/9/12.
11
+ */
12
+@Repository
13
+public interface IHsmsDepartmentDAO extends JpaRepository<HsmsDepartmentEntity, String> {
14
+
15
+    @SuppressWarnings("unchecked")
16
+    HsmsDepartmentEntity save(HsmsDepartmentEntity departmentEntity);
17
+
18
+    @Query(value = "SELECT * FROM itsm_uc_dept g WHERE g.many_phone like CONCAT('%',:phone,'%') AND g.delete_flag = 0 limit 1", nativeQuery = true)
19
+    HsmsDepartmentEntity getDeptByPhone(@Param("phone")String phone);
20
+
21
+
22
+}

+ 11 - 0
src/main/java/com/dashitech/hsms/entity/HsmsCallLogEntity.java

@@ -67,6 +67,10 @@ public class HsmsCallLogEntity implements Serializable {
67 67
     @Column(name = "call_accept")
68 68
     private String callAccept;
69 69
 
70
+    @I18n("来电科室id")
71
+    @Column(name = "call_dept_id")
72
+    private Long callDeptId;
73
+
70 74
     public Integer getVersion() {
71 75
         return version;
72 76
     }
@@ -171,4 +175,11 @@ public class HsmsCallLogEntity implements Serializable {
171 175
         this.callState = callState;
172 176
     }
173 177
 
178
+    public Long getCallDeptId() {
179
+        return callDeptId;
180
+    }
181
+
182
+    public void setCallDeptId(Long callDeptId) {
183
+        this.callDeptId = callDeptId;
184
+    }
174 185
 }

+ 239 - 0
src/main/java/com/dashitech/hsms/entity/HsmsDepartmentEntity.java

@@ -0,0 +1,239 @@
1
+package com.dashitech.hsms.entity;
2
+
3
+import com.dashitech.utils.I18n;
4
+
5
+import javax.persistence.*;
6
+import java.io.Serializable;
7
+
8
+/**
9
+ *  hospital 主表为id,这里为编码
10
+ */
11
+
12
+@Entity
13
+@Table(name = "itsm_uc_dept")
14
+public class HsmsDepartmentEntity implements Serializable {
15
+
16
+	private static final long serialVersionUID = 1L;
17
+
18
+	@Id
19
+	@GeneratedValue(strategy = GenerationType.IDENTITY)
20
+	@Column(name="id",length = 20)
21
+	private Long id;
22
+
23
+	@I18n("科室名")
24
+	@Column(name="dept")
25
+	private String dept;
26
+
27
+	@I18n("科室编码")
28
+	@Column(name="code")
29
+	private String pcode;
30
+
31
+	@I18n("HIS科室编码")
32
+	@Column(name="his_code")
33
+	private String hisCode;
34
+
35
+
36
+	@I18n("删除标识")
37
+	@Column(name = "delete_flag")
38
+	private Integer deleteFlag;
39
+
40
+	@I18n("科室别名")
41
+	@Column(name = "dept_alias")
42
+	private String deptalias;
43
+
44
+
45
+	@I18n("科室类型,检查科室1、检验科室2、临床科室3、其他科室4")
46
+	@Column(name = "_type")
47
+	private String type;
48
+
49
+	@I18n("科室位置")
50
+	@Column(name = "_address")
51
+	private String address;
52
+
53
+	@I18n("所属院区")
54
+	@Column(name = "_hospital_id")
55
+	private Long hospital;
56
+
57
+	@I18n("电话号码")
58
+	@Column(name = "_phone")
59
+	private String phone;
60
+
61
+	@I18n("开头字母拼音")
62
+	@Column(name = "input_code")
63
+	private String inputCode;
64
+
65
+	@I18n("全拼")
66
+	@Column(name = "pinyin")
67
+	private String pinyin;
68
+
69
+	@I18n("别名开头字母拼音")
70
+	@Column(name = "alias_input_code")
71
+	private String aliasInputCode;
72
+
73
+	@I18n("别名全拼")
74
+	@Column(name = "alias_pinyin")
75
+	private String aliasPinyin;
76
+
77
+	@I18n("二维码,不需同步")
78
+	@Column(name = "qrcode")
79
+	private String qrcode;
80
+
81
+	@I18n("父级科室ID")
82
+	@Column(name = "parentId")
83
+	private Long parent;
84
+
85
+	@I18n("是否启用")
86
+	@Column(name = "flag")
87
+	private Integer flag;
88
+
89
+	public Integer getFlag() {
90
+		return flag;
91
+	}
92
+
93
+	public void setFlag(Integer flag) {
94
+		this.flag = flag;
95
+	}
96
+
97
+	public String getHisCode() {
98
+		return hisCode;
99
+	}
100
+
101
+	public void setHisCode(String hisCode) {
102
+		this.hisCode = hisCode;
103
+	}
104
+
105
+	public Long getParent() {
106
+		return parent;
107
+	}
108
+
109
+	public void setParent(Long parent) {
110
+		this.parent = parent;
111
+	}
112
+
113
+	public String getQrcode() {
114
+		return qrcode;
115
+	}
116
+
117
+	public void setQrcode(String qrcode) {
118
+		this.qrcode = qrcode;
119
+	}
120
+
121
+	public String getAliasInputCode() {
122
+		return aliasInputCode;
123
+	}
124
+
125
+	public void setAliasInputCode(String aliasInputCode) {
126
+		this.aliasInputCode = aliasInputCode;
127
+	}
128
+
129
+	public String getAliasPinyin() {
130
+		return aliasPinyin;
131
+	}
132
+
133
+	public void setAliasPinyin(String aliasPinyin) {
134
+		this.aliasPinyin = aliasPinyin;
135
+	}
136
+
137
+	public String getInputCode() {
138
+		return inputCode;
139
+	}
140
+
141
+	public void setInputCode(String inputCode) {
142
+		this.inputCode = inputCode;
143
+	}
144
+
145
+	public String getPinyin() {
146
+		return pinyin;
147
+	}
148
+
149
+	public void setPinyin(String pinyin) {
150
+		this.pinyin = pinyin;
151
+	}
152
+
153
+	public Long getId() {
154
+		return id;
155
+	}
156
+
157
+	public void setId(Long id) {
158
+		this.id = id;
159
+	}
160
+
161
+	public String getDept() {
162
+		return dept;
163
+	}
164
+
165
+	public void setDept(String dept) {
166
+		this.dept = dept;
167
+	}
168
+
169
+	public String getPcode() {
170
+		return pcode;
171
+	}
172
+
173
+	public void setPcode(String pcode) {
174
+		this.pcode = pcode;
175
+	}
176
+
177
+	public Integer getDeleteFlag() {
178
+		return deleteFlag;
179
+	}
180
+
181
+	public void setDeleteFlag(Integer deleteFlag) {
182
+		this.deleteFlag = deleteFlag;
183
+	}
184
+
185
+	public String getDeptalias() {
186
+		return deptalias;
187
+	}
188
+
189
+	public void setDeptalias(String deptalias) {
190
+		this.deptalias = deptalias;
191
+	}
192
+
193
+	public String getType() {
194
+		return type;
195
+	}
196
+
197
+	public void setType(String type) {
198
+		this.type = type;
199
+	}
200
+
201
+	public String getAddress() {
202
+		return address;
203
+	}
204
+
205
+	public void setAddress(String address) {
206
+		this.address = address;
207
+	}
208
+
209
+	public Long getHospital() {
210
+		return hospital;
211
+	}
212
+
213
+	public void setHospital(Long hospital) {
214
+		this.hospital = hospital;
215
+	}
216
+
217
+	public String getPhone() {
218
+		return phone;
219
+	}
220
+
221
+	public void setPhone(String phone) {
222
+		this.phone = phone;
223
+	}
224
+
225
+	@Override
226
+	public String toString() {
227
+		return "DepartmentEntity{" +
228
+				"id=" + id +
229
+				", dept='" + dept + '\'' +
230
+				", pcode='" + pcode + '\'' +
231
+				", deleteFlag=" + deleteFlag +
232
+				", deptalias='" + deptalias + '\'' +
233
+				", type='" + type + '\'' +
234
+				", address='" + address + '\'' +
235
+				", hospital=" + hospital +
236
+				", phone='" + phone + '\'' +
237
+				'}';
238
+	}
239
+}