|
@@ -40,6 +40,15 @@ func NmybRegistRouters() {
|
40
|
40
|
beego.Router("/nmyb/readcard", &NmController{}, "get:ReadCard")
|
41
|
41
|
}
|
42
|
42
|
|
|
43
|
+type ReadCardResult struct {
|
|
44
|
+ Output struct {
|
|
45
|
+ CardInfo string `json:"cardInfo"`
|
|
46
|
+ RegionCode string `json:"regionCode"`
|
|
47
|
+ } `json:"output"`
|
|
48
|
+ Code int `json:"CODE"`
|
|
49
|
+ ErrMsg string `json:"ERRMSG"`
|
|
50
|
+}
|
|
51
|
+
|
43
|
52
|
type ELeData struct {
|
44
|
53
|
Data struct {
|
45
|
54
|
IdNo string `json:"idNo"`
|
|
@@ -60,7 +69,7 @@ type ELeData struct {
|
60
|
69
|
type ResultTwo struct {
|
61
|
70
|
ErrMsg string `json:"err_msg"`
|
62
|
71
|
InfRefmsgid string `json:"inf_refmsgid"`
|
63
|
|
- Infcode int64 `json:"infcode"`
|
|
72
|
+ Infcode string `json:"infcode"`
|
64
|
73
|
Output struct {
|
65
|
74
|
Baseinfo struct {
|
66
|
75
|
Age float64 `json:"age"`
|
|
@@ -487,13 +496,32 @@ func (c *NmController) ReadCard() {
|
487
|
496
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeReadCardException)
|
488
|
497
|
return
|
489
|
498
|
}
|
|
499
|
+
|
|
500
|
+ var dat2 map[string]interface{}
|
|
501
|
+ if err := json.Unmarshal([]byte(basStr), &dat2); err == nil {
|
|
502
|
+ fmt.Println(dat2)
|
|
503
|
+ } else {
|
|
504
|
+ fmt.Println(err)
|
|
505
|
+ }
|
|
506
|
+
|
|
507
|
+ userJSONBytes, _ := json.Marshal(dat2)
|
|
508
|
+ var res ReadCardResult
|
|
509
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
510
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
511
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
512
|
+ return
|
|
513
|
+ }
|
|
514
|
+
|
490
|
515
|
fmt.Println(basStr)
|
491
|
|
- bas := strings.Split(basStr, "|")
|
|
516
|
+ bas := strings.Split(res.Output.CardInfo, "|")
|
492
|
517
|
basNumber := bas[1]
|
493
|
518
|
fmt.Println(basNumber)
|
494
|
519
|
card_sn := bas[3]
|
495
|
520
|
fmt.Println(card_sn)
|
496
|
|
- result := service.Gdyb1101B(basNumber, org_name, operator, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, 1, card_sn, 1)
|
|
521
|
+ cardNumber := bas[2]
|
|
522
|
+ name := bas[4]
|
|
523
|
+
|
|
524
|
+ result := service.Gdyb1101G(basNumber, org_name, operator, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, 1, card_sn, 1, name)
|
497
|
525
|
var dat map[string]interface{}
|
498
|
526
|
if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
499
|
527
|
fmt.Println(dat)
|
|
@@ -501,21 +529,22 @@ func (c *NmController) ReadCard() {
|
501
|
529
|
fmt.Println(err)
|
502
|
530
|
}
|
503
|
531
|
|
504
|
|
- userJSONBytes, _ := json.Marshal(dat)
|
505
|
|
- var res ResultTwo
|
506
|
|
- if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
532
|
+ userJSONBytes2, _ := json.Marshal(dat)
|
|
533
|
+ var res2 ResultTwo
|
|
534
|
+ if err := json.Unmarshal(userJSONBytes2, &res2); err != nil {
|
507
|
535
|
utils.ErrorLog("解析失败:%v", err)
|
508
|
536
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
509
|
537
|
return
|
510
|
538
|
}
|
|
539
|
+ infocode, _ := strconv.ParseInt(res2.Infcode, 10, 64)
|
511
|
540
|
|
512
|
|
- if res.Infcode == 0 {
|
|
541
|
+ if infocode == 0 {
|
513
|
542
|
|
514
|
543
|
var insutypes []string
|
515
|
544
|
var insutype string
|
516
|
545
|
var is390 int = 0
|
517
|
546
|
var is310 int = 0
|
518
|
|
- for _, item := range res.Output.Iinfo {
|
|
547
|
+ for _, item := range res2.Output.Iinfo {
|
519
|
548
|
if (item.Insutype == "390" && item.PsnInsuStas == "1") || (item.Insutype == "310" && item.PsnInsuStas == "1") {
|
520
|
549
|
insutypes = append(insutypes, item.Insutype)
|
521
|
550
|
}
|
|
@@ -553,10 +582,11 @@ func (c *NmController) ReadCard() {
|
553
|
582
|
|
554
|
583
|
} else {
|
555
|
584
|
c.ServeSuccessJSON(map[string]interface{}{
|
556
|
|
- "patient": patient,
|
557
|
|
- "number": basNumber,
|
558
|
|
- "info": res,
|
559
|
|
- "insutype": insutype,
|
|
585
|
+ "patient": patient,
|
|
586
|
+ "number": basNumber,
|
|
587
|
+ "info": res,
|
|
588
|
+ "insutype": insutype,
|
|
589
|
+ "card_number": cardNumber,
|
560
|
590
|
})
|
561
|
591
|
}
|
562
|
592
|
} else {
|
|
@@ -591,7 +621,9 @@ func (c *NmController) ReadCard() {
|
591
|
621
|
return
|
592
|
622
|
}
|
593
|
623
|
|
594
|
|
- if res.Infcode == 0 {
|
|
624
|
+ infocode, _ := strconv.ParseInt(res.Infcode, 10, 64)
|
|
625
|
+
|
|
626
|
+ if infocode == 0 {
|
595
|
627
|
patient, err := service.GetPatientByNumber(ele.Data.IdNo, c.GetAdminUserInfo().CurrentOrgId)
|
596
|
628
|
if err == gorm.ErrRecordNotFound {
|
597
|
629
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
|