|
@@ -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, "^")
|