|
@@ -7145,95 +7145,176 @@ func (c *HisApiController) CheckTreatment() {
|
7145
|
7145
|
config, _ := service.GetMedicalInsuranceConfig(adminUser.CurrentOrgId)
|
7146
|
7146
|
roles, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, admin_user_id)
|
7147
|
7147
|
|
7148
|
|
- result := service.Gdyb1101A(id_card_no, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, patient.Name)
|
7149
|
|
- var dat map[string]interface{}
|
7150
|
|
- if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
7151
|
|
- fmt.Println(dat)
|
7152
|
|
- } else {
|
7153
|
|
- fmt.Println(err)
|
7154
|
|
- }
|
7155
|
|
- userJSONBytes, _ := json.Marshal(dat)
|
7156
|
|
- var res ResultTwo
|
7157
|
|
- var res10265 ResultTwo10265
|
7158
|
|
- if miConfig.Code == "H15049901371" {
|
7159
|
|
- if err := json.Unmarshal(userJSONBytes, &res10265); err != nil {
|
7160
|
|
- utils.ErrorLog("解析失败:%v", err)
|
|
7148
|
+ if miConfig.MdtrtareaAdmvs == "421300" {
|
|
7149
|
+ var res ResultTwo
|
|
7150
|
+ api := "http://192.168.124.4:9532/" + "hbyb/1101?cert_no=" + "" +
|
|
7151
|
+ "&org_name=" + miConfig.OrgName + "&doctor=" + roles.UserName + "&fixmedins_code=" + miConfig.Code +
|
|
7152
|
+ "&insuplc_admdvs=" + miConfig.InsuplcAdmdvs + "&mdtrtarea_admvs=" + miConfig.MdtrtareaAdmvs + "&secret_key=" + miConfig.SecretKey + "&id_card_type=" + strconv.FormatInt(2, 10) + "&card_sn=" + "" + "&certificates=" + strconv.FormatInt(2, 10)
|
|
7153
|
+ resp, requestErr := http.Get(api)
|
|
7154
|
+ if requestErr != nil {
|
7161
|
7155
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
7162
|
7156
|
return
|
7163
|
7157
|
}
|
7164
|
|
- res.ErrMsg = res10265.ErrMsg
|
7165
|
|
- infocode, _ := strconv.ParseInt(res10265.Infcode, 10, 64)
|
7166
|
|
- res.Infcode = infocode
|
7167
|
|
- res.Output = res10265.Output
|
7168
|
|
- res.InfRefmsgid = res10265.InfRefmsgid
|
7169
|
|
- } else {
|
7170
|
|
- if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
7158
|
+
|
|
7159
|
+ body, ioErr := ioutil.ReadAll(resp.Body)
|
|
7160
|
+ if ioErr != nil {
|
|
7161
|
+ utils.ErrorLog("接口返回数据读取失败: %v", ioErr)
|
|
7162
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7163
|
+ return
|
|
7164
|
+ }
|
|
7165
|
+ var respJSON map[string]interface{}
|
|
7166
|
+ if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
|
|
7167
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
7168
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7169
|
+ return
|
|
7170
|
+ }
|
|
7171
|
+
|
|
7172
|
+ respJSON = respJSON["data"].(map[string]interface{})["pre"].(map[string]interface{})
|
|
7173
|
+ result, _ := json.Marshal(respJSON)
|
|
7174
|
+
|
|
7175
|
+ if err := json.Unmarshal([]byte(result), &res); err != nil {
|
7171
|
7176
|
utils.ErrorLog("解析失败:%v", err)
|
7172
|
7177
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
7173
|
7178
|
return
|
7174
|
7179
|
}
|
7175
|
|
- }
|
7176
|
7180
|
|
7177
|
|
- var user_name string
|
7178
|
|
- role, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, adminUser.AdminUser.Id)
|
7179
|
|
- if role.ID == 0 {
|
7180
|
|
- user_name = "xxx"
|
7181
|
|
- } else {
|
7182
|
|
- user_name = role.UserName
|
7183
|
|
- }
|
|
7181
|
+ if res.Infcode == 0 {
|
7184
|
7182
|
|
7185
|
|
- baseParams := models.BaseParams{
|
7186
|
|
- SecretKey: miConfig.SecretKey,
|
7187
|
|
- FixmedinsCode: miConfig.Code,
|
7188
|
|
- InsuplcAdmdvs: miConfig.InsuplcAdmdvs,
|
7189
|
|
- MdtrtareaAdmvs: miConfig.MdtrtareaAdmvs,
|
7190
|
|
- OrgName: miConfig.OrgName,
|
7191
|
|
- Doctor: user_name,
|
7192
|
|
- }
|
|
7183
|
+ api := "http://192.168.124.4:9532/" + "hbyb/2001?cert_no=" + "" +
|
|
7184
|
+ "&org_name=" + miConfig.OrgName + "&doctor=" + roles.UserName + "&fixmedins_code=" + miConfig.Code +
|
|
7185
|
+ "&insuplc_admdvs=" + miConfig.InsuplcAdmdvs + "&mdtrtarea_admvs=" + miConfig.MdtrtareaAdmvs + "&secret_key=" + miConfig.SecretKey + "&psn_no=" + res.Output.Baseinfo.PsnNo + "&insutype=" + insutype + "&med_type=" + med_type
|
|
7186
|
+ resp, requestErr := http.Get(api)
|
|
7187
|
+ if requestErr != nil {
|
|
7188
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7189
|
+ return
|
|
7190
|
+ }
|
7193
|
7191
|
|
7194
|
|
- if config.IsOpen == 1 {
|
7195
|
|
- if miConfig.Code == "H15049901371" {
|
7196
|
|
- if med_type == "14" {
|
7197
|
|
- if insutype == "390" {
|
7198
|
|
- med_type = "9933"
|
7199
|
|
- } else if insutype == "310" {
|
7200
|
|
- med_type = "990502"
|
7201
|
|
- }
|
7202
|
|
- } else if med_type == "11" {
|
7203
|
|
- med_type = "11"
|
|
7192
|
+ body, ioErr := ioutil.ReadAll(resp.Body)
|
|
7193
|
+ if ioErr != nil {
|
|
7194
|
+ utils.ErrorLog("接口返回数据读取失败: %v", ioErr)
|
|
7195
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7196
|
+ return
|
|
7197
|
+ }
|
|
7198
|
+ var respJSON map[string]interface{}
|
|
7199
|
+ if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
|
|
7200
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
7201
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7202
|
+ return
|
|
7203
|
+ }
|
|
7204
|
+ var res Result2001
|
|
7205
|
+
|
|
7206
|
+ respJSON = respJSON["data"].(map[string]interface{})["pre"].(map[string]interface{})
|
|
7207
|
+ result2, _ := json.Marshal(respJSON)
|
|
7208
|
+
|
|
7209
|
+ if err := json.Unmarshal([]byte(result2), &res); err != nil {
|
|
7210
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
7211
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7212
|
+ return
|
|
7213
|
+ }
|
|
7214
|
+
|
|
7215
|
+ if res.Infcode == 0 {
|
|
7216
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
7217
|
+ "msg": res.Output.Trtinfo,
|
|
7218
|
+ })
|
7204
|
7219
|
}
|
|
7220
|
+
|
|
7221
|
+ } else {
|
|
7222
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
|
|
7223
|
+ return
|
7205
|
7224
|
}
|
7206
|
|
- result := service.Gdyb2001(baseParams, res.Output.Baseinfo.PsnNo, insutype, med_type)
|
|
7225
|
+
|
|
7226
|
+ } else {
|
|
7227
|
+
|
|
7228
|
+ result := service.Gdyb1101A(id_card_no, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, patient.Name)
|
7207
|
7229
|
var dat map[string]interface{}
|
7208
|
7230
|
if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
7209
|
7231
|
fmt.Println(dat)
|
7210
|
7232
|
} else {
|
7211
|
7233
|
fmt.Println(err)
|
7212
|
7234
|
}
|
7213
|
|
- var res Result2001
|
7214
|
|
- var res10265 Result2001Org10265
|
|
7235
|
+ userJSONBytes, _ := json.Marshal(dat)
|
|
7236
|
+ var res ResultTwo
|
|
7237
|
+ var res10265 ResultTwo10265
|
7215
|
7238
|
if miConfig.Code == "H15049901371" {
|
7216
|
|
- if err := json.Unmarshal([]byte(result), &res10265); err != nil {
|
|
7239
|
+ if err := json.Unmarshal(userJSONBytes, &res10265); err != nil {
|
7217
|
7240
|
utils.ErrorLog("解析失败:%v", err)
|
7218
|
7241
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
7219
|
7242
|
return
|
7220
|
7243
|
}
|
7221
|
7244
|
res.ErrMsg = res10265.ErrMsg
|
7222
|
|
- res.Output = res10265.Output
|
7223
|
|
- res.InfRefmsgid = res10265.InfRefmsgid
|
7224
|
7245
|
infocode, _ := strconv.ParseInt(res10265.Infcode, 10, 64)
|
7225
|
7246
|
res.Infcode = infocode
|
|
7247
|
+ res.Output = res10265.Output
|
|
7248
|
+ res.InfRefmsgid = res10265.InfRefmsgid
|
7226
|
7249
|
} else {
|
7227
|
|
- if err := json.Unmarshal([]byte(result), &res); err != nil {
|
|
7250
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
7228
|
7251
|
utils.ErrorLog("解析失败:%v", err)
|
7229
|
7252
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
7230
|
7253
|
return
|
7231
|
7254
|
}
|
7232
|
7255
|
}
|
7233
|
|
- if res.Infcode == 0 {
|
7234
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
7235
|
|
- "msg": res.Output.Trtinfo,
|
7236
|
|
- })
|
|
7256
|
+
|
|
7257
|
+ var user_name string
|
|
7258
|
+ role, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, adminUser.AdminUser.Id)
|
|
7259
|
+ if role.ID == 0 {
|
|
7260
|
+ user_name = "xxx"
|
|
7261
|
+ } else {
|
|
7262
|
+ user_name = role.UserName
|
|
7263
|
+ }
|
|
7264
|
+
|
|
7265
|
+ baseParams := models.BaseParams{
|
|
7266
|
+ SecretKey: miConfig.SecretKey,
|
|
7267
|
+ FixmedinsCode: miConfig.Code,
|
|
7268
|
+ InsuplcAdmdvs: miConfig.InsuplcAdmdvs,
|
|
7269
|
+ MdtrtareaAdmvs: miConfig.MdtrtareaAdmvs,
|
|
7270
|
+ OrgName: miConfig.OrgName,
|
|
7271
|
+ Doctor: user_name,
|
|
7272
|
+ }
|
|
7273
|
+
|
|
7274
|
+ if config.IsOpen == 1 {
|
|
7275
|
+ if miConfig.Code == "H15049901371" {
|
|
7276
|
+ if med_type == "14" {
|
|
7277
|
+ if insutype == "390" {
|
|
7278
|
+ med_type = "9933"
|
|
7279
|
+ } else if insutype == "310" {
|
|
7280
|
+ med_type = "990502"
|
|
7281
|
+ }
|
|
7282
|
+ } else if med_type == "11" {
|
|
7283
|
+ med_type = "11"
|
|
7284
|
+ }
|
|
7285
|
+ }
|
|
7286
|
+ result := service.Gdyb2001(baseParams, res.Output.Baseinfo.PsnNo, insutype, med_type)
|
|
7287
|
+ var dat map[string]interface{}
|
|
7288
|
+ if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
|
7289
|
+ fmt.Println(dat)
|
|
7290
|
+ } else {
|
|
7291
|
+ fmt.Println(err)
|
|
7292
|
+ }
|
|
7293
|
+ var res Result2001
|
|
7294
|
+ var res10265 Result2001Org10265
|
|
7295
|
+ if miConfig.Code == "H15049901371" {
|
|
7296
|
+ if err := json.Unmarshal([]byte(result), &res10265); err != nil {
|
|
7297
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
7298
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7299
|
+ return
|
|
7300
|
+ }
|
|
7301
|
+ res.ErrMsg = res10265.ErrMsg
|
|
7302
|
+ res.Output = res10265.Output
|
|
7303
|
+ res.InfRefmsgid = res10265.InfRefmsgid
|
|
7304
|
+ infocode, _ := strconv.ParseInt(res10265.Infcode, 10, 64)
|
|
7305
|
+ res.Infcode = infocode
|
|
7306
|
+ } else {
|
|
7307
|
+ if err := json.Unmarshal([]byte(result), &res); err != nil {
|
|
7308
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
7309
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
7310
|
+ return
|
|
7311
|
+ }
|
|
7312
|
+ }
|
|
7313
|
+ if res.Infcode == 0 {
|
|
7314
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
7315
|
+ "msg": res.Output.Trtinfo,
|
|
7316
|
+ })
|
|
7317
|
+ }
|
7237
|
7318
|
}
|
7238
|
7319
|
}
|
7239
|
7320
|
}
|