|
@@ -9695,11 +9695,48 @@ func (c *HisApiController) GetSettleAccounts() {
|
9695
|
9695
|
infocode, _ := strconv.ParseInt(resEleven10265.Infcode, 10, 64)
|
9696
|
9696
|
res.Infcode = infocode
|
9697
|
9697
|
|
9698
|
|
- } else {
|
9699
|
|
- //result2 := service.Gdyb1101()
|
|
9698
|
+ } else if miConfig.MdtrtareaAdmvs == "150499" {
|
|
9699
|
+ api := "http://172.16.13.254:9532/" + "nmyb/5203?psn_no=" + businessParams.PsnNo + "&mdtrt_id=" + businessParams.MdtrtId + "&setl_id=" + businessParams.SetlId +
|
|
9700
|
+ "&org_name=" + miConfig.OrgName + "&doctor=" + baseParams.Doctor + "&fixmedins_code=" + miConfig.Code +
|
|
9701
|
+ "&insuplc_admdvs=" + miConfig.InsuplcAdmdvs + "&mdtrtarea_admvs=" + miConfig.MdtrtareaAdmvs + "&secret_key=" + miConfig.SecretKey + "&url=" + miConfig.Url
|
|
9702
|
+
|
|
9703
|
+ resp, requestErr := http.Get(api)
|
|
9704
|
+ if requestErr != nil {
|
|
9705
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
9706
|
+ return
|
|
9707
|
+ }
|
|
9708
|
+ body, ioErr := ioutil.ReadAll(resp.Body)
|
|
9709
|
+ if ioErr != nil {
|
|
9710
|
+ utils.ErrorLog("接口返回数据读取失败: %v", ioErr)
|
|
9711
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
9712
|
+ return
|
|
9713
|
+ }
|
|
9714
|
+ var respJSON map[string]interface{}
|
|
9715
|
+ if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
|
|
9716
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
9717
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
9718
|
+ return
|
|
9719
|
+ }
|
9700
|
9720
|
|
9701
|
|
- //result2 := service.Gdyb5204(baseParams, businessParams)
|
9702
|
|
- //saveLog(result2, "", "5204", "查询")
|
|
9721
|
+ respJSON = respJSON["data"].(map[string]interface{})["pre"].(map[string]interface{})
|
|
9722
|
+ result, _ := json.Marshal(respJSON)
|
|
9723
|
+ fmt.Println("log")
|
|
9724
|
+ fmt.Println(string(result))
|
|
9725
|
+ if err := json.Unmarshal([]byte(result), &resEleven10265); err != nil {
|
|
9726
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
9727
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
9728
|
+ return
|
|
9729
|
+ }
|
|
9730
|
+
|
|
9731
|
+ res.InfRefmsgid = resEleven10265.InfRefmsgid
|
|
9732
|
+ res.Output = resEleven10265.Output
|
|
9733
|
+ res.ErrMsg = resEleven10265.ErrMsg
|
|
9734
|
+ res.Cainfo = resEleven10265.Cainfo
|
|
9735
|
+ res.WarnMsg = resEleven10265.WarnMsg
|
|
9736
|
+ infocode, _ := strconv.ParseInt(resEleven10265.Infcode, 10, 64)
|
|
9737
|
+ res.Infcode = infocode
|
|
9738
|
+
|
|
9739
|
+ } else {
|
9703
|
9740
|
result := service.Gdyb5203(baseParams, businessParams)
|
9704
|
9741
|
var dat map[string]interface{}
|
9705
|
9742
|
if err := json.Unmarshal([]byte(result), &dat); err == nil {
|