|
@@ -5,6 +5,7 @@ import com.dashitech.businessdata.dao.IDepartmentDAO;
|
5
|
5
|
import com.dashitech.businessdata.dao.IDictionaryDAO;
|
6
|
6
|
import com.dashitech.businessdata.dao.IHospitalConfigDAO;
|
7
|
7
|
import com.dashitech.businessdata.entity.CallLogEntity;
|
|
8
|
+import com.dashitech.businessdata.entity.DictionaryEntity;
|
8
|
9
|
import com.dashitech.businessdata.entity.HospitalConfig;
|
9
|
10
|
import com.dashitech.callcenter.webSocket.service.PhoneWebSocket;
|
10
|
11
|
import com.dashitech.utils.JsonUtil;
|
|
@@ -12,6 +13,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
|
12
|
13
|
import net.sf.json.JSONObject;
|
13
|
14
|
import org.apache.commons.lang.StringUtils;
|
14
|
15
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
16
|
+import org.springframework.context.annotation.Configuration;
|
15
|
17
|
import org.springframework.stereotype.Service;
|
16
|
18
|
|
17
|
19
|
import java.io.DataInputStream;
|
|
@@ -105,7 +107,7 @@ public class HandlerThread {
|
105
|
107
|
reset = "addrec";
|
106
|
108
|
}
|
107
|
109
|
}
|
108
|
|
- if (data != null && data.length() >= 10) {
|
|
110
|
+ if (data != null && data.length() >= 10){
|
109
|
111
|
String dataStr = "";
|
110
|
112
|
if (reset.equals("addrec")){
|
111
|
113
|
dataStr = "{\"cmd\":\""+reset+"\",\"error\":\"0\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}";
|
|
@@ -113,8 +115,18 @@ public class HandlerThread {
|
113
|
115
|
dataStr = "{\"cmd\":\""+reset+"\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}";
|
114
|
116
|
}
|
115
|
117
|
if (data.indexOf("loginreq") >= 0){
|
116
|
|
- his = JsonUtil.toJSONObject(data).getString("sernelNo");
|
117
|
|
- his = callLogDAO.selectSernelNo("sernelNo",his);
|
|
118
|
+
|
|
119
|
+ if(JsonUtil.toJSONObject(data).containsKey("serialNo")){
|
|
120
|
+ his = JsonUtil.toJSONObject(data).getString("serialNo");
|
|
121
|
+ }else{
|
|
122
|
+ his = JsonUtil.toJSONObject(data).getString("sernelNo");
|
|
123
|
+ }
|
|
124
|
+
|
|
125
|
+ if(his.equals("21040501017523")){
|
|
126
|
+ his = "1";
|
|
127
|
+ }else{
|
|
128
|
+ his = callLogDAO.selectSernelNo("sernelNo",his);
|
|
129
|
+ }
|
118
|
130
|
dataStr = "{\"cmd\":\"loginres\", \"error\":\"0\", \"timestamp\":\"" + (System.currentTimeMillis() / 1000) + "\"}";
|
119
|
131
|
}
|
120
|
132
|
System.out.println("redate>>"+dataStr+"his"+his);
|