소스 검색

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

csx 2 년 전
부모
커밋
0e618053c4
2개의 변경된 파일217개의 추가작업 그리고 81개의 파일을 삭제
  1. 135 80
      controllers/zh/zh_his_api_controller.go
  2. 82 1
      service/gdyb_service.go

+ 135 - 80
controllers/zh/zh_his_api_controller.go 파일 보기

@@ -2441,55 +2441,90 @@ func (c *ZHHisApiController) ReadCard() {
2441 2441
 
2442 2442
 	switch id_card_type {
2443 2443
 	case 1:
2444
-		//if initFlag == 0 {
2445
-		//	c.TestGetBasBaseInit()
2446
-		//}
2447
-		//basStr := c.GetBasBaseInfo(miConfig.Code, miConfig.MdtrtareaAdmvs, roles.UserName, strconv.FormatInt(roles.ID, 64), miConfig.OrgName)
2448
-		//if len(basStr) == 0 {
2449
-		//	c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeReadCardException)
2450
-		//	return
2451
-		//}
2452
-		//fmt.Println(basStr)
2453
-		//bas := strings.Split(basStr, "|")
2454
-		//basNumber := bas[1]
2455
-		//fmt.Println(basNumber)
2456
-		//card_sn := bas[3]
2457
-		//fmt.Println(card_sn)
2458
-		//result := service.Gdyb1101B(basNumber, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, id_card_type, card_sn, certificates)
2459
-		//var dat map[string]interface{}
2460
-		//if err := json.Unmarshal([]byte(result), &dat); err == nil {
2461
-		//	fmt.Println(dat)
2462
-		//} else {
2463
-		//	fmt.Println(err)
2464
-		//}
2465
-		//
2466
-		//userJSONBytes, _ := json.Marshal(dat)
2467
-		//var res ResultTwo
2468
-		//if err := json.Unmarshal(userJSONBytes, &res); err != nil {
2469
-		//	utils.ErrorLog("解析失败:%v", err)
2470
-		//	c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
2471
-		//	return
2472
-		//}
2473
-		//
2474
-		//if res.Infcode == 0 {
2475
-		//	patient, err := service.GetPatientByNumber(basNumber, c.GetAdminUserInfo().CurrentOrgId)
2476
-		//	if err == gorm.ErrRecordNotFound {
2477
-		//		c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
2478
-		//		return
2479
-		//	} else if err != nil {
2480
-		//		c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
2481
-		//		return
2482
-		//
2483
-		//	} else {
2484
-		//		c.ServeSuccessJSON(map[string]interface{}{
2485
-		//			"patient": patient,
2486
-		//			"number":  basNumber,
2487
-		//		})
2488
-		//	}
2489
-		//} else {
2490
-		//	c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
2491
-		//	return
2492
-		//}
2444
+		if initFlag == 0 {
2445
+			c.TestGetBasBaseInit()
2446
+		}
2447
+		basStr := c.GetBasBaseInfo(miConfig.Code, miConfig.MdtrtareaAdmvs, roles.UserName, strconv.FormatInt(roles.ID, 64), miConfig.OrgName)
2448
+		if len(basStr) == 0 {
2449
+			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeReadCardException)
2450
+			return
2451
+		}
2452
+		fmt.Println(basStr)
2453
+		bas := strings.Split(basStr, "|")
2454
+		basNumber := bas[1]
2455
+		fmt.Println(basNumber)
2456
+		card_sn := bas[3]
2457
+		fmt.Println(card_sn)
2458
+		result := service.Gdyb1101B(basNumber, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, id_card_type, card_sn, certificates)
2459
+		var dat map[string]interface{}
2460
+		if err := json.Unmarshal([]byte(result), &dat); err == nil {
2461
+			fmt.Println(dat)
2462
+		} else {
2463
+			fmt.Println(err)
2464
+		}
2465
+
2466
+		userJSONBytes, _ := json.Marshal(dat)
2467
+		var res ResultTwo
2468
+		if err := json.Unmarshal(userJSONBytes, &res); err != nil {
2469
+			utils.ErrorLog("解析失败:%v", err)
2470
+			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
2471
+			return
2472
+		}
2473
+
2474
+		if res.Infcode == 0 {
2475
+
2476
+			var insutypes []string
2477
+			var insutype string
2478
+			var is390 int = 0
2479
+			var is310 int = 0
2480
+			for _, item := range res.Output.Iinfo {
2481
+				if (item.Insutype == "390" && item.PsnInsuStas == "1") || (item.Insutype == "310" && item.PsnInsuStas == "1") {
2482
+					insutypes = append(insutypes, item.Insutype)
2483
+				}
2484
+			}
2485
+			if len(insutypes) == 1 {
2486
+				insutype = insutypes[0]
2487
+			} else {
2488
+				for _, i := range insutypes {
2489
+					if i == "390" {
2490
+						is390 = 1
2491
+					}
2492
+
2493
+					if i == "310" {
2494
+						is310 = 1
2495
+					}
2496
+				}
2497
+			}
2498
+			if is390 == 1 {
2499
+				insutype = "390"
2500
+			}
2501
+			if is310 == 1 {
2502
+				insutype = "310"
2503
+			}
2504
+			if len(insutypes) == 0 {
2505
+				insutype = "310"
2506
+			}
2507
+
2508
+			patient, err := service.GetPatientByNumber(basNumber, c.GetAdminUserInfo().CurrentOrgId)
2509
+			if err == gorm.ErrRecordNotFound {
2510
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
2511
+				return
2512
+			} else if err != nil {
2513
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
2514
+				return
2515
+
2516
+			} else {
2517
+				c.ServeSuccessJSON(map[string]interface{}{
2518
+					"patient":  patient,
2519
+					"number":   basNumber,
2520
+					"info":     res,
2521
+					"insutype": insutype,
2522
+				})
2523
+			}
2524
+		} else {
2525
+			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
2526
+			return
2527
+		}
2493 2528
 		break
2494 2529
 	case 2:
2495 2530
 		SFZStr := c.GetSFZBaseInfo()
@@ -2525,6 +2560,7 @@ func (c *ZHHisApiController) ReadCard() {
2525 2560
 				c.ServeSuccessJSON(map[string]interface{}{
2526 2561
 					"patient": patient,
2527 2562
 					"number":  id_card_number,
2563
+					"info":    res,
2528 2564
 				})
2529 2565
 			}
2530 2566
 		} else {
@@ -2533,37 +2569,56 @@ func (c *ZHHisApiController) ReadCard() {
2533 2569
 		}
2534 2570
 
2535 2571
 		break
2536
-	case 3:
2537
-		//_, pBusiCardInfo := c.GetELeInfo(miConfig.Code, strconv.FormatInt(roles.ID, 64), roles.UserName)
2538
-		//
2539
-		//var ele ELeData
2540
-		//err := json.Unmarshal([]byte(pBusiCardInfo), &ele)
2541
-		//if err != nil {
2542
-		//	utils.ErrorLog("解析失败:%v", err)
2543
-		//}
2544
-		//token := ele.Data.EcToken
2545
-		////if len(token) > 0 {
2546
-		////	result, _ := service.Gdyb1101B(org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, url, ak, token, cainfo, ele.Data.IdNo)
2547
-		////	var dat map[string]interface{}
2548
-		////	if err := json.Unmarshal([]byte(result), &dat); err == nil {
2549
-		////		fmt.Println(dat)
2550
-		////	} else {
2551
-		////		fmt.Println(err)
2552
-		////	}
2553
-		////	c.ServeSuccessJSON(map[string]interface{}{
2554
-		////		"status": "0",
2555
-		////		//"card_info":      pCardInfo,
2556
-		////		"busi_card_info": pBusiCardInfo,
2557
-		////		"token":          token,
2558
-		////		"result":         dat,
2559
-		////		"type":           "2",
2560
-		////	})
2561
-		////} else {
2562
-		//	c.ServeSuccessJSON(map[string]interface{}{
2563
-		//		"status": "-1",
2564
-		//	})
2565
-		//
2566
-		//}
2572
+	case 4:
2573
+		_, pBusiCardInfo := c.GetELeInfo(miConfig.Code, strconv.FormatInt(roles.ID, 64), roles.UserName)
2574
+
2575
+		var ele ELeData
2576
+		err := json.Unmarshal([]byte(pBusiCardInfo), &ele)
2577
+		if err != nil {
2578
+			utils.ErrorLog("解析失败:%v", err)
2579
+		}
2580
+		token := ele.Data.EcToken
2581
+		fmt.Println(token)
2582
+		if len(token) > 0 {
2583
+			result := service.Gdyb1101ForEleCert("", miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, token, "")
2584
+			var dat map[string]interface{}
2585
+			if err := json.Unmarshal([]byte(result), &dat); err == nil {
2586
+				fmt.Println(dat)
2587
+			} else {
2588
+				fmt.Println(err)
2589
+			}
2590
+			userJSONBytes, _ := json.Marshal(dat)
2591
+			var res ResultTwo
2592
+			if err := json.Unmarshal(userJSONBytes, &res); err != nil {
2593
+				utils.ErrorLog("解析失败:%v", err)
2594
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
2595
+				return
2596
+			}
2597
+
2598
+			if res.Infcode == 0 {
2599
+				patient, err := service.GetPatientByNumber(ele.Data.IdNo, c.GetAdminUserInfo().CurrentOrgId)
2600
+				if err == gorm.ErrRecordNotFound {
2601
+					c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
2602
+					return
2603
+				} else if err != nil {
2604
+					c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
2605
+					return
2606
+
2607
+				} else {
2608
+					c.ServeSuccessJSON(map[string]interface{}{
2609
+						"patient": patient,
2610
+						"number":  token,
2611
+						"info":    res,
2612
+					})
2613
+				}
2614
+			} else {
2615
+				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
2616
+				return
2617
+			}
2618
+		} else {
2619
+			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
2620
+			return
2621
+		}
2567 2622
 		break
2568 2623
 	}
2569 2624
 

+ 82 - 1
service/gdyb_service.go 파일 보기

@@ -3687,7 +3687,14 @@ func Gdyb1101B(certNo string, org_name string, doctor string, fixmedins_code str
3687 3687
 	gdyb_paasid := beego.AppConfig.String("gdyb_paasid")
3688 3688
 
3689 3689
 	//url := "http://igb.hsa.gdgov.cn/ebus/gdyb_api/prd/hsa/hgs/1101"
3690
-	url := gdyb_url + "1101"
3690
+	//url := gdyb_url + "1101"
3691
+	var url string
3692
+	if fixmedins_code == "H15049901371" {
3693
+		url = gdyb_url
3694
+	} else {
3695
+		url = gdyb_url + "1101"
3696
+	}
3697
+
3691 3698
 	fmt.Println(url)
3692 3699
 	fmt.Println(gdyb_paasid)
3693 3700
 	fmt.Println(secret_key)
@@ -3720,6 +3727,80 @@ func Gdyb1101B(certNo string, org_name string, doctor string, fixmedins_code str
3720 3727
 	return str
3721 3728
 }
3722 3729
 
3730
+func Gdyb1101ForEleCert(certNo string, org_name string, doctor string, fixmedins_code string, insuplc_admdvs string, mdtrtarea_admvs string, secret_key string, token string, name string) string {
3731
+	//生成签名
3732
+	nonce := GetRandomString(32)
3733
+	timestamp := time.Now().Unix()
3734
+	signature := setSignature(timestamp, nonce, secret_key)
3735
+	//生成输入报文
3736
+	inputMessage := SetInputMessage(nonce, timestamp, org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs)
3737
+	input := make(map[string]interface{})
3738
+	inputData := make(map[string]interface{})
3739
+	inputMessage["infno"] = "1101" // 交易编码
3740
+
3741
+	inputData["mdtrt_cert_type"] = "01" // 就诊凭证类型
3742
+	inputData["card_sn"] = ""           // 卡识别码
3743
+	inputData["certno"] = ""            // 证件号码
3744
+	inputData["psn_cert_type"] = "01"   // 人员证件类型
3745
+
3746
+	inputData["mdtrt_cert_no"] = token // 就诊凭证编号
3747
+	inputData["begntime"] = ""         // 开始时间
3748
+	inputData["psn_name"] = name       // 人员姓名
3749
+	input["data"] = inputData
3750
+	inputMessage["input"] = input //交易输入
3751
+
3752
+	bytesData, err := json.Marshal(inputMessage)
3753
+	fmt.Println(string(bytesData))
3754
+	if err != nil {
3755
+		fmt.Println(err.Error())
3756
+		return err.Error()
3757
+	}
3758
+	reader := bytes.NewReader(bytesData)
3759
+	gdyb_url := beego.AppConfig.String("gdyb_url")
3760
+	gdyb_paasid := beego.AppConfig.String("gdyb_paasid")
3761
+
3762
+	//url := "http://igb.hsa.gdgov.cn/ebus/gdyb_api/prd/hsa/hgs/1101"
3763
+	//url := gdyb_url + "1101"
3764
+	var url string
3765
+	if fixmedins_code == "H15049901371" {
3766
+		url = gdyb_url
3767
+	} else {
3768
+		url = gdyb_url + "1101"
3769
+	}
3770
+
3771
+	fmt.Println(url)
3772
+	fmt.Println(gdyb_paasid)
3773
+	fmt.Println(secret_key)
3774
+	//url := "http://igb.hsa.gdgov.cn/ebus/gdyb_inf/poc/hsa/hgs/1101"
3775
+	request, err := http.NewRequest("POST", url, reader)
3776
+	if err != nil {
3777
+		fmt.Println(err.Error())
3778
+		return err.Error()
3779
+	}
3780
+
3781
+	request.Header.Set("Content-Type", "application/json;charset=UTF-8")
3782
+	request.Header.Set("x-tif-paasid", gdyb_paasid)
3783
+	request.Header.Set("x-tif-signature", signature)
3784
+	request.Header.Set("x-tif-timestamp", strconv.FormatInt(timestamp, 10))
3785
+	request.Header.Set("x-tif-nonce", nonce)
3786
+
3787
+	client := http.Client{}
3788
+	resp, err := client.Do(request)
3789
+	if err != nil {
3790
+		fmt.Println(err.Error())
3791
+		return err.Error()
3792
+	}
3793
+	respBytes, err := ioutil.ReadAll(resp.Body)
3794
+	if err != nil {
3795
+		fmt.Println(err.Error())
3796
+		return err.Error()
3797
+	}
3798
+	fmt.Println(string(respBytes))
3799
+	str := string(respBytes)
3800
+	return str
3801
+
3802
+}
3803
+
3723 3804
 //人员信息版本4
3724 3805
 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, string) {
3725 3806
 	//生成签名