Explorar el Código

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx hace 3 años
padre
commit
c3b6d1de90
Se han modificado 2 ficheros con 98 adiciones y 40 borrados
  1. 45 40
      controllers/sg/his_api_controller.go
  2. 53 0
      service/gdyb_service.go

+ 45 - 40
controllers/sg/his_api_controller.go Ver fichero

@@ -225,53 +225,58 @@ func (c *HisApiController) ReadCard() {
225 225
 	}
226 226
 	switch id_card_type {
227 227
 	case 1:
228
-		basStr := c.GetBasBaseInfo()
229
-		if len(basStr) == 0 {
230
-			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeReadCardException)
231
-			return
232
-		}
233
-		fmt.Println(basStr)
234
-		bas := strings.Split(basStr, "|")
235
-		basNumber := bas[1]
236
-		fmt.Println(basNumber)
237
-		card_sn := bas[3]
238
-		fmt.Println(card_sn)
239
-		result := service.Gdyb1101B(basNumber, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, id_card_type, card_sn, certificates)
240
-		var dat map[string]interface{}
241
-		if err := json.Unmarshal([]byte(result), &dat); err == nil {
242
-			fmt.Println(dat)
228
+		if miConfig.MdtrtareaAdmvs == "421300" {
229
+			result := service.Gdyb1101C("", miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, id_card_type, "", certificates)
230
+			fmt.Println(result)
243 231
 		} else {
244
-			fmt.Println(err)
245
-		}
246
-
247
-		userJSONBytes, _ := json.Marshal(dat)
248
-		var res ResultTwo
249
-		if err := json.Unmarshal(userJSONBytes, &res); err != nil {
250
-			utils.ErrorLog("解析失败:%v", err)
251
-			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
252
-			return
253
-		}
254
-
255
-		if res.Infcode == 0 {
256
-			patient, err := service.GetPatientByNumber(basNumber, c.GetAdminUserInfo().CurrentOrgId)
257
-			if err == gorm.ErrRecordNotFound {
258
-				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
232
+			basStr := c.GetBasBaseInfo()
233
+			if len(basStr) == 0 {
234
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeReadCardException)
259 235
 				return
260
-			} else if err != nil {
261
-				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
236
+			}
237
+			fmt.Println(basStr)
238
+			bas := strings.Split(basStr, "|")
239
+			basNumber := bas[1]
240
+			fmt.Println(basNumber)
241
+			card_sn := bas[3]
242
+			fmt.Println(card_sn)
243
+			result := service.Gdyb1101B(basNumber, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, id_card_type, card_sn, certificates)
244
+			var dat map[string]interface{}
245
+			if err := json.Unmarshal([]byte(result), &dat); err == nil {
246
+				fmt.Println(dat)
247
+			} else {
248
+				fmt.Println(err)
249
+			}
250
+
251
+			userJSONBytes, _ := json.Marshal(dat)
252
+			var res ResultTwo
253
+			if err := json.Unmarshal(userJSONBytes, &res); err != nil {
254
+				utils.ErrorLog("解析失败:%v", err)
255
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
262 256
 				return
257
+			}
258
+
259
+			if res.Infcode == 0 {
260
+				patient, err := service.GetPatientByNumber(basNumber, c.GetAdminUserInfo().CurrentOrgId)
261
+				if err == gorm.ErrRecordNotFound {
262
+					c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
263
+					return
264
+				} else if err != nil {
265
+					c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
266
+					return
263 267
 
268
+				} else {
269
+					c.ServeSuccessJSON(map[string]interface{}{
270
+						"patient": patient,
271
+						"number":  basNumber,
272
+					})
273
+				}
264 274
 			} else {
265
-				c.ServeSuccessJSON(map[string]interface{}{
266
-					"patient": patient,
267
-					"number":  basNumber,
268
-				})
275
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
276
+				return
269 277
 			}
270
-		} else {
271
-			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
272
-			return
278
+			break
273 279
 		}
274
-		break
275 280
 	case 2:
276 281
 		SFZStr := c.GetSFZBaseInfo()
277 282
 		id_card_str := strings.Split(SFZStr, "^")

+ 53 - 0
service/gdyb_service.go Ver fichero

@@ -3058,6 +3058,59 @@ func Gdyb1101B(certNo string, org_name string, doctor string, fixmedins_code str
3058 3058
 	return str
3059 3059
 }
3060 3060
 
3061
+//人员信息版本4
3062
+func Gdyb1101C(certNo string, org_name string, doctor string, fixmedins_code string, insuplc_admdvs string, mdtrtarea_admvs string, secret_key string, id_card_type int64, card_sn string, certificates int64) string {
3063
+	//生成签名
3064
+	nonce := GetRandomString(32)
3065
+	timestamp := time.Now().Unix()
3066
+	//signature := setSignature(timestamp, nonce, secret_key)
3067
+	//生成输入报文
3068
+	inputMessage := SetInputMessage(nonce, timestamp, org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs)
3069
+	input := make(map[string]interface{})
3070
+	inputData := make(map[string]interface{})
3071
+	inputMessage["infno"] = "1101" // 交易编码
3072
+
3073
+	if certificates == 3 {
3074
+		inputData["mdtrt_cert_type"] = "99" // 就诊凭证类型
3075
+		inputData["certno"] = certNo        // 证件号码
3076
+		inputData["psn_cert_type"] = "99"   // 人员证件类型
3077
+
3078
+	} else {
3079
+		if id_card_type == 1 {
3080
+			inputData["mdtrt_cert_type"] = "03" // 就诊凭证类型
3081
+			inputData["card_sn"] = ""           // 卡识别码
3082
+			inputData["certno"] = ""            // 证件号码
3083
+			inputData["psn_cert_type"] = ""     // 人员证件类型
3084
+
3085
+		} else {
3086
+			inputData["mdtrt_cert_type"] = "02" // 就诊凭证类型
3087
+			inputData["card_sn"] = ""           // 卡识别码
3088
+			inputData["certno"] = certNo        // 证件号码
3089
+			inputData["psn_cert_type"] = "1"    // 人员证件类型
3090
+		}
3091
+	}
3092
+
3093
+	inputData["mdtrt_cert_no"] = "" // 就诊凭证编号
3094
+	inputData["begntime"] = ""      // 开始时间
3095
+	inputData["psn_name"] = ""      // 人员姓名
3096
+	input["data"] = inputData
3097
+	inputMessage["input"] = input //交易输入
3098
+	bytesData, err := json.Marshal(inputMessage)
3099
+	fmt.Println(string(bytesData))
3100
+	if err != nil {
3101
+		fmt.Println(err.Error())
3102
+		return err.Error()
3103
+	}
3104
+	var json2 string
3105
+	cmd := exec.Command("java", "-jar", "yh_hb_fat.jar", "1101", string(bytesData), json2)
3106
+	out, err := cmd.Output()
3107
+	if err != nil {
3108
+		fmt.Println("error:", err.Error())
3109
+	}
3110
+	fmt.Println(string(out))
3111
+	return string(out)
3112
+}
3113
+
3061 3114
 func StrPtr(s string) uintptr {
3062 3115
 	return uintptr(unsafe.Pointer(syscall.StringBytePtr(s)))
3063 3116
 }