Pārlūkot izejas kodu

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx 2 gadus atpakaļ
vecāks
revīzija
688d7d2a13
1 mainītis faili ar 40 papildinājumiem un 6 dzēšanām
  1. 40 6
      controllers/zh/zh_his_api_controller.go

+ 40 - 6
controllers/zh/zh_his_api_controller.go Parādīt failu

2980
 		}
2980
 		}
2981
 
2981
 
2982
 		if res.Infcode == 0 {
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
 			patient, err := service.GetPatientByIDCard(res.Output.Baseinfo.Certno, c.GetAdminUserInfo().CurrentOrgId)
3015
 			patient, err := service.GetPatientByIDCard(res.Output.Baseinfo.Certno, c.GetAdminUserInfo().CurrentOrgId)
2984
 			if err == gorm.ErrRecordNotFound {
3016
 			if err == gorm.ErrRecordNotFound {
2985
 				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
3017
 				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
3015
 					}
3047
 					}
3016
 					service.CreateHisPsn(psn)
3048
 					service.CreateHisPsn(psn)
3017
 					c.ServeSuccessJSON(map[string]interface{}{
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
 				} else {
3055
 				} else {
3023
 					Iinfos, _ := json.Marshal(res.Output.Iinfo)
3056
 					Iinfos, _ := json.Marshal(res.Output.Iinfo)
3042
 					}
3075
 					}
3043
 					service.CreateHisPsn(psn)
3076
 					service.CreateHisPsn(psn)
3044
 					c.ServeSuccessJSON(map[string]interface{}{
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
 			}