|
@@ -2980,6 +2980,38 @@ func (c *ZHHisApiController) ReadCard() {
|
2980
|
2980
|
}
|
2981
|
2981
|
|
2982
|
2982
|
if res.Infcode == 0 {
|
|
2983
|
+ var insutypes []string
|
|
2984
|
+ var insutype string
|
|
2985
|
+ var is390 int = 0
|
|
2986
|
+ var is310 int = 0
|
|
2987
|
+ for _, item := range res.Output.Iinfo {
|
|
2988
|
+ if (item.Insutype == "390" && item.PsnInsuStas == "1") || (item.Insutype == "310" && item.PsnInsuStas == "1") {
|
|
2989
|
+ insutypes = append(insutypes, item.Insutype)
|
|
2990
|
+ }
|
|
2991
|
+ }
|
|
2992
|
+ if len(insutypes) == 1 {
|
|
2993
|
+ insutype = insutypes[0]
|
|
2994
|
+ } else {
|
|
2995
|
+ for _, i := range insutypes {
|
|
2996
|
+ if i == "390" {
|
|
2997
|
+ is390 = 1
|
|
2998
|
+ }
|
|
2999
|
+
|
|
3000
|
+ if i == "310" {
|
|
3001
|
+ is310 = 1
|
|
3002
|
+ }
|
|
3003
|
+ }
|
|
3004
|
+ }
|
|
3005
|
+ if is390 == 1 {
|
|
3006
|
+ insutype = "390"
|
|
3007
|
+ }
|
|
3008
|
+ if is310 == 1 {
|
|
3009
|
+ insutype = "310"
|
|
3010
|
+ }
|
|
3011
|
+ if len(insutypes) == 0 {
|
|
3012
|
+ insutype = "310"
|
|
3013
|
+ }
|
|
3014
|
+
|
2983
|
3015
|
patient, err := service.GetPatientByIDCard(res.Output.Baseinfo.Certno, c.GetAdminUserInfo().CurrentOrgId)
|
2984
|
3016
|
if err == gorm.ErrRecordNotFound {
|
2985
|
3017
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
|
|
@@ -3015,9 +3047,10 @@ func (c *ZHHisApiController) ReadCard() {
|
3015
|
3047
|
}
|
3016
|
3048
|
service.CreateHisPsn(psn)
|
3017
|
3049
|
c.ServeSuccessJSON(map[string]interface{}{
|
3018
|
|
- "patient": patient,
|
3019
|
|
- "number": basNumber,
|
3020
|
|
- "info": res,
|
|
3050
|
+ "patient": patient,
|
|
3051
|
+ "number": basNumber,
|
|
3052
|
+ "info": res,
|
|
3053
|
+ "insutype": insutype,
|
3021
|
3054
|
})
|
3022
|
3055
|
} else {
|
3023
|
3056
|
Iinfos, _ := json.Marshal(res.Output.Iinfo)
|
|
@@ -3042,9 +3075,10 @@ func (c *ZHHisApiController) ReadCard() {
|
3042
|
3075
|
}
|
3043
|
3076
|
service.CreateHisPsn(psn)
|
3044
|
3077
|
c.ServeSuccessJSON(map[string]interface{}{
|
3045
|
|
- "patient": patient,
|
3046
|
|
- "number": token,
|
3047
|
|
- "info": res,
|
|
3078
|
+ "patient": patient,
|
|
3079
|
+ "number": token,
|
|
3080
|
+ "info": res,
|
|
3081
|
+ "insutype": insutype,
|
3048
|
3082
|
})
|
3049
|
3083
|
}
|
3050
|
3084
|
}
|