|
@@ -10,6 +10,7 @@ import (
|
10
|
10
|
"gdyb/utils"
|
11
|
11
|
"github.com/astaxie/beego"
|
12
|
12
|
"github.com/axgle/mahonia"
|
|
13
|
+ "github.com/jinzhu/gorm"
|
13
|
14
|
"io/ioutil"
|
14
|
15
|
"os"
|
15
|
16
|
"regexp"
|
|
@@ -39,6 +40,92 @@ func NmybRegistRouters() {
|
39
|
40
|
beego.Router("/nmyb/readcard", &NmController{}, "get:ReadCard")
|
40
|
41
|
}
|
41
|
42
|
|
|
43
|
+type ELeData struct {
|
|
44
|
+ Data struct {
|
|
45
|
+ IdNo string `json:"idNo"`
|
|
46
|
+ IdType string `json:"idType"`
|
|
47
|
+ UserName string `json:"userName"`
|
|
48
|
+ EcToken string `json:"ecToken"`
|
|
49
|
+ InsuOrg string `json:"insuOrg"`
|
|
50
|
+ Gender string `json:"gender"`
|
|
51
|
+ Birthday string `json:"birthday"`
|
|
52
|
+ Nationality string `json:"nationality"`
|
|
53
|
+ Email string `json:"email"`
|
|
54
|
+ Extra string `json:"extra"`
|
|
55
|
+ } `json:"data"`
|
|
56
|
+ Code int `json:"code"`
|
|
57
|
+ Message string `json:"message"`
|
|
58
|
+}
|
|
59
|
+
|
|
60
|
+type ResultTwo struct {
|
|
61
|
+ ErrMsg string `json:"err_msg"`
|
|
62
|
+ InfRefmsgid string `json:"inf_refmsgid"`
|
|
63
|
+ Infcode int64 `json:"infcode"`
|
|
64
|
+ Output struct {
|
|
65
|
+ Baseinfo struct {
|
|
66
|
+ Age float64 `json:"age"`
|
|
67
|
+ Brdy string `json:"brdy"`
|
|
68
|
+ Certno string `json:"certno"`
|
|
69
|
+ Gend string `json:"gend"`
|
|
70
|
+ Naty string `json:"naty"`
|
|
71
|
+ PsnCertType string `json:"psn_cert_type"`
|
|
72
|
+ PsnName string `json:"psn_name"`
|
|
73
|
+ PsnNo string `json:"psn_no"`
|
|
74
|
+ } `json:"baseinfo"`
|
|
75
|
+ Idetinfo []interface{} `json:"idetinfo"`
|
|
76
|
+ Iinfo []struct {
|
|
77
|
+ Balc float64 `json:"balc"`
|
|
78
|
+ CvlservFlag string `json:"cvlserv_flag"`
|
|
79
|
+ EmpName string `json:"emp_name"`
|
|
80
|
+ InsuplcAdmdvs string `json:"insuplc_admdvs"`
|
|
81
|
+ Insutype string `json:"insutype"`
|
|
82
|
+ PausInsuDansuplcAdmdvs string `json:"paus_insu_dansuplc_admdvs"`
|
|
83
|
+ PausInsuDate string `json:"paus_insu_date"`
|
|
84
|
+ PsnInsuDate string `json:"psn_insu_date"`
|
|
85
|
+ PsnInsuStas string `json:"psn_insu_stas"`
|
|
86
|
+ PsnType string `json:"psn_type"`
|
|
87
|
+ } `json:"insuinfo"`
|
|
88
|
+ } `json:"output"`
|
|
89
|
+ RefmsgTime string `json:"refmsg_time"`
|
|
90
|
+ RespondTime string `json:"respond_time"`
|
|
91
|
+ Signtype interface{} `json:"signtype"`
|
|
92
|
+ WarnInfo interface{} `json:"warn_info"`
|
|
93
|
+}
|
|
94
|
+type ResultTwo10265 struct {
|
|
95
|
+ ErrMsg string `json:"err_msg"`
|
|
96
|
+ InfRefmsgid string `json:"inf_refmsgid"`
|
|
97
|
+ Infcode string `json:"infcode"`
|
|
98
|
+ Output struct {
|
|
99
|
+ Baseinfo struct {
|
|
100
|
+ Age float64 `json:"age"`
|
|
101
|
+ Brdy string `json:"brdy"`
|
|
102
|
+ Certno string `json:"certno"`
|
|
103
|
+ Gend string `json:"gend"`
|
|
104
|
+ Naty string `json:"naty"`
|
|
105
|
+ PsnCertType string `json:"psn_cert_type"`
|
|
106
|
+ PsnName string `json:"psn_name"`
|
|
107
|
+ PsnNo string `json:"psn_no"`
|
|
108
|
+ } `json:"baseinfo"`
|
|
109
|
+ Idetinfo []interface{} `json:"idetinfo"`
|
|
110
|
+ Iinfo []struct {
|
|
111
|
+ Balc float64 `json:"balc"`
|
|
112
|
+ CvlservFlag string `json:"cvlserv_flag"`
|
|
113
|
+ EmpName string `json:"emp_name"`
|
|
114
|
+ InsuplcAdmdvs string `json:"insuplc_admdvs"`
|
|
115
|
+ Insutype string `json:"insutype"`
|
|
116
|
+ PausInsuDansuplcAdmdvs string `json:"paus_insu_dansuplc_admdvs"`
|
|
117
|
+ PausInsuDate string `json:"paus_insu_date"`
|
|
118
|
+ PsnInsuDate string `json:"psn_insu_date"`
|
|
119
|
+ PsnInsuStas string `json:"psn_insu_stas"`
|
|
120
|
+ PsnType string `json:"psn_type"`
|
|
121
|
+ } `json:"insuinfo"`
|
|
122
|
+ } `json:"output"`
|
|
123
|
+ RefmsgTime string `json:"refmsg_time"`
|
|
124
|
+ RespondTime string `json:"respond_time"`
|
|
125
|
+ Signtype interface{} `json:"signtype"`
|
|
126
|
+ WarnInfo interface{} `json:"warn_info"`
|
|
127
|
+}
|
|
128
|
+
|
42
|
129
|
func (c *NmController) Post1101() {
|
43
|
130
|
certNo := c.GetString("cert_no")
|
44
|
131
|
org_name := c.GetString("org_name")
|
|
@@ -378,112 +465,155 @@ func (c *NmController) Get2503() {
|
378
|
465
|
|
379
|
466
|
}
|
380
|
467
|
|
381
|
|
-type ELeData struct {
|
382
|
|
- Data struct {
|
383
|
|
- SiNo string `json:"si_no"`
|
384
|
|
- SiCardNo string `json:"si_card_no"`
|
385
|
|
- SiCardIssueArea string `json:"si_card_issue_area"`
|
386
|
|
- Name string `json:"name"`
|
387
|
|
- Gender string `json:"gender"`
|
388
|
|
- IdType string `json:"id_type"`
|
389
|
|
- IdNo string `json:"id_no"`
|
390
|
|
- EcCardToken string `json:"ecCardToken"`
|
391
|
|
- } `json:"data"`
|
392
|
|
- Code int `json:"code"`
|
393
|
|
- Message string `json:"message"`
|
394
|
|
-}
|
395
|
|
-
|
396
|
468
|
func (c *NmController) ReadCard() {
|
397
|
469
|
fixmedins_code := c.GetString("fixmedins_code")
|
398
|
470
|
secret_key := c.GetString("secret_key")
|
399
|
|
- ak := c.GetString("ak")
|
400
|
471
|
org_name := c.GetString("org_name")
|
401
|
|
- doctor := c.GetString("doctor")
|
402
|
472
|
insuplc_admdvs := c.GetString("insuplc_admdvs")
|
403
|
473
|
mdtrtarea_admvs := c.GetString("mdtrtarea_admvs")
|
404
|
|
- url := c.GetString("url")
|
405
|
|
- cainfo := c.GetString("cainfo")
|
406
|
474
|
id_card_type := c.GetString("id_card_type")
|
407
|
475
|
operator_id := c.GetString("operator_id")
|
408
|
476
|
operator := c.GetString("operator")
|
409
|
477
|
|
410
|
|
- //result, request := service.Jsyb9001(org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, 1, url, cainfo, ak)
|
411
|
|
- //fmt.Println(request)
|
412
|
|
- //fmt.Println(result)
|
413
|
|
-
|
414
|
|
- c.TestGetBasBaseInit(fixmedins_code, secret_key, ak)
|
415
|
|
- fmt.Println(id_card_type)
|
|
478
|
+ if initFlag == 0 {
|
|
479
|
+ c.TestGetBasBaseInit()
|
|
480
|
+ }
|
416
|
481
|
switch id_card_type {
|
417
|
482
|
case "1":
|
418
|
|
- pCardInfo, pBusiCardInfo := c.GetBasBaseInfo()
|
419
|
|
- pBusiCardInfo = Remove0000(pBusiCardInfo)
|
420
|
|
- pCardInfo = Remove0000(pCardInfo)
|
421
|
|
- fmt.Println(":", ConvertToString(pCardInfo, "gbk", "utf-8"))
|
422
|
|
-
|
423
|
|
- fmt.Println(pBusiCardInfo)
|
424
|
|
- fmt.Println(pCardInfo)
|
425
|
|
- bas := strings.Split(pCardInfo, "|")
|
426
|
|
- basNumber := bas[2]
|
427
|
|
- id_card_no := bas[1]
|
|
483
|
+ pBusiCardInfo := c.GetBasBaseInfo(fixmedins_code, mdtrtarea_admvs, operator, operator_id, org_name)
|
|
484
|
+ basStr := Remove0000(pBusiCardInfo)
|
|
485
|
+
|
|
486
|
+ if len(basStr) == 0 {
|
|
487
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeReadCardException)
|
|
488
|
+ return
|
|
489
|
+ }
|
|
490
|
+ fmt.Println(basStr)
|
|
491
|
+ bas := strings.Split(basStr, "|")
|
|
492
|
+ basNumber := bas[1]
|
|
493
|
+ fmt.Println(basNumber)
|
428
|
494
|
card_sn := bas[3]
|
|
495
|
+ fmt.Println(card_sn)
|
|
496
|
+ result := service.Gdyb1101B(basNumber, org_name, operator, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, 1, card_sn, 1)
|
|
497
|
+ var dat map[string]interface{}
|
|
498
|
+ if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
|
499
|
+ fmt.Println(dat)
|
|
500
|
+ } else {
|
|
501
|
+ fmt.Println(err)
|
|
502
|
+ }
|
429
|
503
|
|
430
|
|
- id_card_type_int, _ := strconv.ParseInt(id_card_type, 10, 64)
|
|
504
|
+ userJSONBytes, _ := json.Marshal(dat)
|
|
505
|
+ var res ResultTwo
|
|
506
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
507
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
508
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
509
|
+ return
|
|
510
|
+ }
|
431
|
511
|
|
432
|
|
- if len(pCardInfo) > 0 && len(pBusiCardInfo) > 0 {
|
433
|
|
- result, _ := service.Jsyb1101A(basNumber, org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, id_card_type_int, card_sn, "1", url, ak, pBusiCardInfo, id_card_no, cainfo)
|
434
|
|
- var dat map[string]interface{}
|
435
|
|
- if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
436
|
|
- fmt.Println(dat)
|
|
512
|
+ if res.Infcode == 0 {
|
|
513
|
+
|
|
514
|
+ var insutypes []string
|
|
515
|
+ var insutype string
|
|
516
|
+ var is390 int = 0
|
|
517
|
+ var is310 int = 0
|
|
518
|
+ for _, item := range res.Output.Iinfo {
|
|
519
|
+ if (item.Insutype == "390" && item.PsnInsuStas == "1") || (item.Insutype == "310" && item.PsnInsuStas == "1") {
|
|
520
|
+ insutypes = append(insutypes, item.Insutype)
|
|
521
|
+ }
|
|
522
|
+ }
|
|
523
|
+ if len(insutypes) == 1 {
|
|
524
|
+ insutype = insutypes[0]
|
437
|
525
|
} else {
|
438
|
|
- fmt.Println(err)
|
|
526
|
+ for _, i := range insutypes {
|
|
527
|
+ if i == "390" {
|
|
528
|
+ is390 = 1
|
|
529
|
+ }
|
|
530
|
+
|
|
531
|
+ if i == "310" {
|
|
532
|
+ is310 = 1
|
|
533
|
+ }
|
|
534
|
+ }
|
|
535
|
+ }
|
|
536
|
+ if is390 == 1 {
|
|
537
|
+ insutype = "390"
|
|
538
|
+ }
|
|
539
|
+ if is310 == 1 {
|
|
540
|
+ insutype = "310"
|
|
541
|
+ }
|
|
542
|
+ if len(insutypes) == 0 {
|
|
543
|
+ insutype = "310"
|
439
|
544
|
}
|
440
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
441
|
|
- "status": "0",
|
442
|
|
- "card_info": pCardInfo,
|
443
|
|
- "busi_card_info": pBusiCardInfo,
|
444
|
|
- "result": dat,
|
445
|
|
- "type": "1",
|
446
|
|
- })
|
447
|
|
- } else {
|
448
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
449
|
|
- "status": "-1",
|
450
|
|
- })
|
451
|
545
|
|
|
546
|
+ patient, err := service.GetPatientByNumber(basNumber, c.GetAdminUserInfo().CurrentOrgId)
|
|
547
|
+ if err == gorm.ErrRecordNotFound {
|
|
548
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
|
|
549
|
+ return
|
|
550
|
+ } else if err != nil {
|
|
551
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
|
|
552
|
+ return
|
|
553
|
+
|
|
554
|
+ } else {
|
|
555
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
556
|
+ "patient": patient,
|
|
557
|
+ "number": basNumber,
|
|
558
|
+ "info": res,
|
|
559
|
+ "insutype": insutype,
|
|
560
|
+ })
|
|
561
|
+ }
|
|
562
|
+ } else {
|
|
563
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
|
|
564
|
+ return
|
452
|
565
|
}
|
|
566
|
+
|
453
|
567
|
break
|
454
|
568
|
case "4": //电子凭证
|
455
|
569
|
_, pBusiCardInfo := c.GetELeInfo(fixmedins_code, operator_id, operator)
|
456
|
|
- //fmt.Println(pCardInfo)
|
457
|
|
- fmt.Println(pBusiCardInfo)
|
458
|
|
- pBusiCardInfo = Remove0000(pBusiCardInfo)
|
459
|
|
- //pCardInfo = Remove0000(pCardInfo)
|
|
570
|
+
|
460
|
571
|
var ele ELeData
|
461
|
572
|
err := json.Unmarshal([]byte(pBusiCardInfo), &ele)
|
462
|
573
|
if err != nil {
|
463
|
574
|
utils.ErrorLog("解析失败:%v", err)
|
464
|
575
|
}
|
465
|
|
- token := ele.Data.EcCardToken
|
|
576
|
+ token := ele.Data.EcToken
|
|
577
|
+ fmt.Println(token)
|
466
|
578
|
if len(token) > 0 {
|
467
|
|
- result, _ := service.Jsyb1101B(org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, url, ak, token, cainfo, ele.Data.IdNo)
|
|
579
|
+ result := service.Gdyb1101ForEleCert("", org_name, operator, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, token, "")
|
468
|
580
|
var dat map[string]interface{}
|
469
|
581
|
if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
470
|
582
|
fmt.Println(dat)
|
471
|
583
|
} else {
|
472
|
584
|
fmt.Println(err)
|
473
|
585
|
}
|
474
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
475
|
|
- "status": "0",
|
476
|
|
- //"card_info": pCardInfo,
|
477
|
|
- "busi_card_info": pBusiCardInfo,
|
478
|
|
- "token": token,
|
479
|
|
- "result": dat,
|
480
|
|
- "type": "2",
|
481
|
|
- })
|
482
|
|
- } else {
|
483
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
484
|
|
- "status": "-1",
|
485
|
|
- })
|
|
586
|
+ userJSONBytes, _ := json.Marshal(dat)
|
|
587
|
+ var res ResultTwo
|
|
588
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
589
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
590
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
591
|
+ return
|
|
592
|
+ }
|
486
|
593
|
|
|
594
|
+ if res.Infcode == 0 {
|
|
595
|
+ patient, err := service.GetPatientByNumber(ele.Data.IdNo, c.GetAdminUserInfo().CurrentOrgId)
|
|
596
|
+ if err == gorm.ErrRecordNotFound {
|
|
597
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
|
|
598
|
+ return
|
|
599
|
+ } else if err != nil {
|
|
600
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
|
|
601
|
+ return
|
|
602
|
+
|
|
603
|
+ } else {
|
|
604
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
605
|
+ "patient": patient,
|
|
606
|
+ "number": token,
|
|
607
|
+ "info": res,
|
|
608
|
+ })
|
|
609
|
+ }
|
|
610
|
+ } else {
|
|
611
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
|
|
612
|
+ return
|
|
613
|
+ }
|
|
614
|
+ } else {
|
|
615
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisFailedException)
|
|
616
|
+ return
|
487
|
617
|
}
|
488
|
618
|
break
|
489
|
619
|
|
|
@@ -525,7 +655,6 @@ func (c *NmController) TestGetBasBaseInit() {
|
525
|
655
|
//initFlag = 1
|
526
|
656
|
return
|
527
|
657
|
}
|
528
|
|
-
|
529
|
658
|
func (c *NmController) GetSFZBaseInfo() string {
|
530
|
659
|
DllDef := syscall.MustLoadDLL("SSCard.dll")
|
531
|
660
|
readCard := DllDef.MustFindProc("ReadSFZ")
|
|
@@ -541,7 +670,6 @@ func (c *NmController) GetSFZBaseInfo() string {
|
541
|
670
|
fmt.Println(r)
|
542
|
671
|
return string(str)
|
543
|
672
|
}
|
544
|
|
-
|
545
|
673
|
func (c *NmController) GetBasBaseInfo(fixmedins_code string, mdtrtarea_admvs string, opter_name string, opter_id string, fixmedins_name string) string {
|
546
|
674
|
DllDef := syscall.MustLoadDLL("HeaSecReadInfo.dll")
|
547
|
675
|
readCard := DllDef.MustFindProc("ReadCardBas")
|
|
@@ -597,7 +725,6 @@ func (c *NmController) GetBasBaseInfo(fixmedins_code string, mdtrtarea_admvs str
|
597
|
725
|
}
|
598
|
726
|
return DeleteExtraSpace(string(pBusiCardInfo))
|
599
|
727
|
}
|
600
|
|
-
|
601
|
728
|
func (c *NmController) GetELeInfo(code string, operator_id string, operator_name string) (string, string) {
|
602
|
729
|
DllDef := syscall.MustLoadDLL("NationECCode.dll")
|
603
|
730
|
readCard := DllDef.MustFindProc("NationEcTrans")
|
|
@@ -630,7 +757,6 @@ func (c *NmController) GetELeInfo(code string, operator_id string, operator_name
|
630
|
757
|
}
|
631
|
758
|
return DeleteExtraSpace(""), DeleteExtraSpace(string(pBusiCardInfo))
|
632
|
759
|
}
|
633
|
|
-
|
634
|
760
|
func IntPtr(n int) uintptr {
|
635
|
761
|
return uintptr(n)
|
636
|
762
|
}
|