|
@@ -862,7 +862,17 @@ func (c *SZHisApiController) GetRegisterInfo() {
|
862
|
862
|
//doctorInfo, _ := service.GetAdminUserInfoByID(adminInfo.CurrentOrgId, doctor)
|
863
|
863
|
doctorDepartment, _ := service.GetDepartMentDetail(department)
|
864
|
864
|
adminRole, _ := service.GetAdminUserInfoByID(adminInfo.CurrentOrgId, admin_user_id)
|
865
|
|
- his, _ := service.GetHisPatientInfo(adminInfo.CurrentOrgId, patient_id, theTime.Unix())
|
|
865
|
+ //his, _ := service.GetHisPatientInfo(adminInfo.CurrentOrgId, patient_id, theTime.Unix())
|
|
866
|
+
|
|
867
|
+ his, _ := service.GetHisPatientInfoTwo(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
|
868
|
+ if len(his) >= 1 {
|
|
869
|
+ order, _ := service.GetNewHisOrderTwo(adminInfo.CurrentOrgId, his[len(his)-1].Number, his[len(his)-1].PatientId, theTime.Unix())
|
|
870
|
+ if len(his) >= 1 && order.ID == 0 {
|
|
871
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisPatientParamWrong)
|
|
872
|
+ return
|
|
873
|
+ }
|
|
874
|
+ }
|
|
875
|
+
|
866
|
876
|
var custom_code string
|
867
|
877
|
var custom_project_name string
|
868
|
878
|
var allPrice float64
|
|
@@ -897,351 +907,347 @@ func (c *SZHisApiController) GetRegisterInfo() {
|
897
|
907
|
|
898
|
908
|
break
|
899
|
909
|
}
|
900
|
|
- if his.ID == 0 {
|
901
|
|
- var opera_name string
|
902
|
|
- var opera_code string
|
903
|
|
- if adminRole.ID == 0 {
|
904
|
|
- opera_name = "管理员"
|
905
|
|
- opera_code = "01"
|
906
|
|
- } else {
|
907
|
|
- opera_name = adminRole.UserName
|
908
|
|
- opera_code = strconv.FormatInt(admin_user_id, 10)
|
909
|
|
- }
|
910
|
|
- month := time.Unix(1557042972, 0).Format("1")
|
911
|
|
- year := time.Now().Format("2006")
|
912
|
|
- month = time.Now().Format("01")
|
913
|
|
- day := time.Now().Format("02")
|
914
|
|
- //流水号
|
915
|
|
- number := miConfig.Code + year + month + day +
|
916
|
|
- fmt.Sprintf("%07v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(10000000)) // 定点协议机构编码(5位)+日期(8位)+流水号(7位)
|
917
|
|
- mz_number := miConfig.Code + year + month + day +
|
|
910
|
+ var opera_name string
|
|
911
|
+ var opera_code string
|
|
912
|
+ if adminRole.ID == 0 {
|
|
913
|
+ opera_name = "管理员"
|
|
914
|
+ opera_code = "01"
|
|
915
|
+ } else {
|
|
916
|
+ opera_name = adminRole.UserName
|
|
917
|
+ opera_code = strconv.FormatInt(admin_user_id, 10)
|
|
918
|
+ }
|
|
919
|
+ month := time.Unix(1557042972, 0).Format("1")
|
|
920
|
+ year := time.Now().Format("2006")
|
|
921
|
+ month = time.Now().Format("01")
|
|
922
|
+ day := time.Now().Format("02")
|
|
923
|
+ //流水号
|
|
924
|
+ number := miConfig.Code + year + month + day +
|
|
925
|
+ fmt.Sprintf("%07v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(10000000)) // 定点协议机构编码(5位)+日期(8位)+流水号(7位)
|
|
926
|
+ mz_number := miConfig.Code + year + month + day +
|
|
927
|
+ fmt.Sprintf("%07v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(10000000))
|
|
928
|
+
|
|
929
|
+ //1.判断读卡类型
|
|
930
|
+ //2.读卡 获取交易验证码,医疗证号,发卡地区行政区划代码
|
|
931
|
+ yiliao_number, id_card_number, verifyCode, version_code, health_card_no, _, ret4 := ReadBasCardGetNumber("MZ002" + "|" + number + "|" + miConfig.Code + "|")
|
|
932
|
+ fmt.Println(yiliao_number)
|
|
933
|
+ fmt.Println(id_card_number)
|
|
934
|
+ fmt.Println(verifyCode)
|
|
935
|
+ fmt.Println(version_code)
|
|
936
|
+ fmt.Println(ret4)
|
|
937
|
+
|
|
938
|
+ dept_code := doctorDepartment.Number
|
|
939
|
+
|
|
940
|
+ is_yidi = 1
|
|
941
|
+ tempPatient, _ := service.GetPatientByNumber(id_card_number, adminInfo.CurrentOrgId)
|
|
942
|
+ //根据业务的人员信息跟设备读社保卡获取的信息进行匹配,判断是否为同一个人,相同则进行挂号操作,不同则报错
|
|
943
|
+ fmt.Println(tempPatient.ID)
|
|
944
|
+ fmt.Println(patient_id)
|
|
945
|
+
|
|
946
|
+ if tempPatient.ID == patient_id {
|
|
947
|
+ temp_mz_number := miConfig.Code + year + month + day +
|
918
|
948
|
fmt.Sprintf("%07v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(10000000))
|
919
|
|
-
|
920
|
|
- //1.判断读卡类型
|
921
|
|
- //2.读卡 获取交易验证码,医疗证号,发卡地区行政区划代码
|
922
|
|
- yiliao_number, id_card_number, verifyCode, version_code, health_card_no, _, ret4 := ReadBasCardGetNumber("MZ002" + "|" + number + "|" + miConfig.Code + "|")
|
923
|
|
- fmt.Println(yiliao_number)
|
924
|
|
- fmt.Println(id_card_number)
|
925
|
|
- fmt.Println(verifyCode)
|
926
|
|
- fmt.Println(version_code)
|
927
|
|
- fmt.Println(ret4)
|
928
|
|
-
|
929
|
|
- dept_code := doctorDepartment.Number
|
930
|
|
-
|
931
|
|
- is_yidi = 1
|
932
|
|
- tempPatient, _ := service.GetPatientByNumber(id_card_number, adminInfo.CurrentOrgId)
|
933
|
|
- //根据业务的人员信息跟设备读社保卡获取的信息进行匹配,判断是否为同一个人,相同则进行挂号操作,不同则报错
|
934
|
|
- fmt.Println(tempPatient.ID)
|
935
|
|
- fmt.Println(patient_id)
|
936
|
|
-
|
937
|
|
- if tempPatient.ID == patient_id {
|
938
|
|
- temp_mz_number := miConfig.Code + year + month + day +
|
939
|
|
- fmt.Sprintf("%07v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(10000000))
|
940
|
|
- tempVerifyCode, tempVersionCode := ReadCardGetCode("XX001" + "|" + temp_mz_number + "|" + miConfig.Code)
|
941
|
|
-
|
942
|
|
- yiliao_number = "%GALMAFXJGKUKZNKWAIUH?;07857319025346309758?"
|
943
|
|
-
|
944
|
|
- result001 := service.SzybXX001(opera_name, opera_code, miConfig.Code, yiliao_number, tempVerifyCode, temp_mz_number, tempVersionCode)
|
945
|
|
-
|
946
|
|
- if ret4 == 0 { //本地卡流程
|
947
|
|
- if is_yidi == 1 {
|
948
|
|
-
|
949
|
|
- //var dat2 map[string]interface{}
|
950
|
|
- //if err := json.Unmarshal([]byte(result001), &dat2); err == nil {
|
951
|
|
- // fmt.Println(dat2)
|
952
|
|
- //} else {
|
953
|
|
- // fmt.Println(err)
|
954
|
|
- //}
|
955
|
|
- //userJSONBytes2, _ := json.Marshal(dat2)
|
956
|
|
- //var res2 ResultMZ001
|
957
|
|
- //if err := json.Unmarshal(userJSONBytes2, &res2); err != nil {
|
958
|
|
- // utils.ErrorLog("解析失败:%v", err)
|
959
|
|
- //}
|
960
|
|
-
|
961
|
|
- //本地就医流程
|
962
|
|
- //挂号
|
963
|
|
- resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, dept_code, yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
964
|
|
- var dat map[string]interface{}
|
965
|
|
- if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
966
|
|
- fmt.Println(dat)
|
967
|
|
- } else {
|
968
|
|
- fmt.Println(err)
|
969
|
|
- }
|
970
|
|
- userJSONBytes, _ := json.Marshal(dat)
|
971
|
|
- var res ResultOne
|
972
|
|
- if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
973
|
|
- utils.ErrorLog("解析失败:%v", err)
|
974
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
975
|
|
- return
|
|
949
|
+ tempVerifyCode, tempVersionCode := ReadCardGetCode("XX001" + "|" + temp_mz_number + "|" + miConfig.Code)
|
|
950
|
+
|
|
951
|
+ yiliao_number = "%GALMAFXJGKUKZNKWAIUH?;07857319025346309758?"
|
|
952
|
+
|
|
953
|
+ result001 := service.SzybXX001(opera_name, opera_code, miConfig.Code, yiliao_number, tempVerifyCode, temp_mz_number, tempVersionCode)
|
|
954
|
+
|
|
955
|
+ if ret4 == 0 { //本地卡流程
|
|
956
|
+ if is_yidi == 1 {
|
|
957
|
+
|
|
958
|
+ //var dat2 map[string]interface{}
|
|
959
|
+ //if err := json.Unmarshal([]byte(result001), &dat2); err == nil {
|
|
960
|
+ // fmt.Println(dat2)
|
|
961
|
+ //} else {
|
|
962
|
+ // fmt.Println(err)
|
|
963
|
+ //}
|
|
964
|
+ //userJSONBytes2, _ := json.Marshal(dat2)
|
|
965
|
+ //var res2 ResultMZ001
|
|
966
|
+ //if err := json.Unmarshal(userJSONBytes2, &res2); err != nil {
|
|
967
|
+ // utils.ErrorLog("解析失败:%v", err)
|
|
968
|
+ //}
|
|
969
|
+
|
|
970
|
+ //本地就医流程
|
|
971
|
+ //挂号
|
|
972
|
+ resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, dept_code, yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
|
973
|
+ var dat map[string]interface{}
|
|
974
|
+ if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
|
975
|
+ fmt.Println(dat)
|
|
976
|
+ } else {
|
|
977
|
+ fmt.Println(err)
|
|
978
|
+ }
|
|
979
|
+ userJSONBytes, _ := json.Marshal(dat)
|
|
980
|
+ var res ResultOne
|
|
981
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
982
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
983
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
984
|
+ return
|
|
985
|
+ }
|
|
986
|
+ if res.Transreturncode == "00000000" {
|
|
987
|
+ his := models.VMHisPatient{
|
|
988
|
+ Name: name,
|
|
989
|
+ Gender: gender,
|
|
990
|
+ Birthday: birthUnix,
|
|
991
|
+ MedicalTreatmentType: medical_care,
|
|
992
|
+ IdType: certificates,
|
|
993
|
+ IdCardNo: id_card,
|
|
994
|
+ BalanceAccountsType: settlementValue,
|
|
995
|
+ SocialType: social_type,
|
|
996
|
+ MedicalInsuranceNumber: medical_insurance_card,
|
|
997
|
+ RegisterType: register_type,
|
|
998
|
+ RegisterCost: registration_fee,
|
|
999
|
+ TreatmentCost: medical_expenses,
|
|
1000
|
+ Status: 1,
|
|
1001
|
+ Ctime: time.Now().Unix(),
|
|
1002
|
+ Mtime: time.Now().Unix(),
|
|
1003
|
+ Iinfo: resp_result,
|
|
1004
|
+ PatientId: patient.ID,
|
|
1005
|
+ RecordDate: theTime.Unix(),
|
|
1006
|
+ UserOrgId: adminInfo.CurrentOrgId,
|
|
1007
|
+ AdminUserId: admin_user_id,
|
|
1008
|
+ IsReturn: 1,
|
|
1009
|
+ IdCardType: id_card_type,
|
|
1010
|
+ Doctor: doctor,
|
|
1011
|
+ Departments: department,
|
|
1012
|
+ YiliaoNumber: yiliao_number,
|
|
1013
|
+ MzNumber: number,
|
|
1014
|
+ Number: mz_number,
|
|
1015
|
+ PsnNo: health_card_no,
|
|
1016
|
+ PatientInfo: result001,
|
976
|
1017
|
}
|
977
|
|
- if res.Transreturncode == "00000000" {
|
978
|
|
- his := models.VMHisPatient{
|
979
|
|
- Name: name,
|
980
|
|
- Gender: gender,
|
981
|
|
- Birthday: birthUnix,
|
982
|
|
- MedicalTreatmentType: medical_care,
|
983
|
|
- IdType: certificates,
|
984
|
|
- IdCardNo: id_card,
|
985
|
|
- BalanceAccountsType: settlementValue,
|
986
|
|
- SocialType: social_type,
|
987
|
|
- MedicalInsuranceNumber: medical_insurance_card,
|
988
|
|
- RegisterType: register_type,
|
989
|
|
- RegisterCost: registration_fee,
|
990
|
|
- TreatmentCost: medical_expenses,
|
991
|
|
- Status: 1,
|
992
|
|
- Ctime: time.Now().Unix(),
|
993
|
|
- Mtime: time.Now().Unix(),
|
994
|
|
- Iinfo: resp_result,
|
995
|
|
- PatientId: patient.ID,
|
996
|
|
- RecordDate: theTime.Unix(),
|
997
|
|
- UserOrgId: adminInfo.CurrentOrgId,
|
998
|
|
- AdminUserId: admin_user_id,
|
999
|
|
- IsReturn: 1,
|
1000
|
|
- IdCardType: id_card_type,
|
1001
|
|
- Doctor: doctor,
|
1002
|
|
- Departments: department,
|
1003
|
|
- YiliaoNumber: yiliao_number,
|
1004
|
|
- MzNumber: number,
|
1005
|
|
- Number: mz_number,
|
1006
|
|
- PsnNo: health_card_no,
|
1007
|
|
- PatientInfo: result001,
|
1008
|
|
- }
|
1009
|
|
- service.CreateHisPatientTwo(&his)
|
1010
|
|
- lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
1011
|
|
- if len(lists) == 1 {
|
1012
|
|
- service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1013
|
|
- }
|
1014
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1015
|
|
- "msg": "挂号成功",
|
1016
|
|
- })
|
1017
|
|
- } else {
|
1018
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1019
|
|
- "failed_code": -10,
|
1020
|
|
- "msg": res.Transreturnmessage,
|
1021
|
|
- })
|
1022
|
|
- return
|
|
1018
|
+ service.CreateHisPatientTwo(&his)
|
|
1019
|
+ lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
|
1020
|
+ if len(lists) == 1 {
|
|
1021
|
+ service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1023
|
1022
|
}
|
|
1023
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1024
|
+ "msg": "挂号成功",
|
|
1025
|
+ })
|
|
1026
|
+ } else {
|
|
1027
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1028
|
+ "failed_code": -10,
|
|
1029
|
+ "msg": res.Transreturnmessage,
|
|
1030
|
+ })
|
|
1031
|
+ return
|
|
1032
|
+ }
|
1024
|
1033
|
|
|
1034
|
+ } else {
|
|
1035
|
+ //异地就医流程
|
|
1036
|
+ //异地走鉴权流程
|
|
1037
|
+ //authResult := CardAuth(number)
|
|
1038
|
+ //fmt.Println(authResult)
|
|
1039
|
+
|
|
1040
|
+ //tempPatient, _ := service.GetPatientByNumber(id_card_number, adminInfo.CurrentOrgId)
|
|
1041
|
+ //if tempPatient.ID == patient_id {
|
|
1042
|
+ resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, "0305", yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
|
1043
|
+ var dat map[string]interface{}
|
|
1044
|
+ if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
|
1045
|
+ fmt.Println(dat)
|
1025
|
1046
|
} else {
|
1026
|
|
- //异地就医流程
|
1027
|
|
- //异地走鉴权流程
|
1028
|
|
- //authResult := CardAuth(number)
|
1029
|
|
- //fmt.Println(authResult)
|
1030
|
|
-
|
1031
|
|
- //tempPatient, _ := service.GetPatientByNumber(id_card_number, adminInfo.CurrentOrgId)
|
1032
|
|
- //if tempPatient.ID == patient_id {
|
1033
|
|
- resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, "0305", yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
1034
|
|
- var dat map[string]interface{}
|
1035
|
|
- if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
1036
|
|
- fmt.Println(dat)
|
1037
|
|
- } else {
|
1038
|
|
- fmt.Println(err)
|
1039
|
|
- }
|
|
1047
|
+ fmt.Println(err)
|
|
1048
|
+ }
|
1040
|
1049
|
|
1041
|
|
- userJSONBytes, _ := json.Marshal(dat)
|
|
1050
|
+ userJSONBytes, _ := json.Marshal(dat)
|
1042
|
1051
|
|
1043
|
|
- var res ResultOne
|
1044
|
|
- if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
1045
|
|
- utils.ErrorLog("解析失败:%v", err)
|
1046
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1047
|
|
- return
|
|
1052
|
+ var res ResultOne
|
|
1053
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
1054
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1055
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1056
|
+ return
|
|
1057
|
+ }
|
|
1058
|
+ if res.Transreturncode == "00000000" {
|
|
1059
|
+ his := models.VMHisPatient{
|
|
1060
|
+ Name: name,
|
|
1061
|
+ Gender: gender,
|
|
1062
|
+ Birthday: birthUnix,
|
|
1063
|
+ MedicalTreatmentType: medical_care,
|
|
1064
|
+ IdType: certificates,
|
|
1065
|
+ IdCardNo: id_card,
|
|
1066
|
+ BalanceAccountsType: settlementValue,
|
|
1067
|
+ SocialType: social_type,
|
|
1068
|
+ MedicalInsuranceNumber: medical_insurance_card,
|
|
1069
|
+ RegisterType: register_type,
|
|
1070
|
+ RegisterCost: registration_fee,
|
|
1071
|
+ TreatmentCost: medical_expenses,
|
|
1072
|
+ Status: 1,
|
|
1073
|
+ Ctime: time.Now().Unix(),
|
|
1074
|
+ Mtime: time.Now().Unix(),
|
|
1075
|
+ Iinfo: resp_result,
|
|
1076
|
+ PatientId: patient.ID,
|
|
1077
|
+ RecordDate: theTime.Unix(),
|
|
1078
|
+ UserOrgId: adminInfo.CurrentOrgId,
|
|
1079
|
+ AdminUserId: admin_user_id,
|
|
1080
|
+ IsReturn: 1,
|
|
1081
|
+ IdCardType: id_card_type,
|
|
1082
|
+ Doctor: doctor,
|
|
1083
|
+ Departments: department,
|
|
1084
|
+ YiliaoNumber: yiliao_number,
|
|
1085
|
+ MzNumber: number,
|
|
1086
|
+ Number: mz_number,
|
|
1087
|
+ PsnNo: health_card_no,
|
|
1088
|
+ PatientInfo: result001,
|
1048
|
1089
|
}
|
1049
|
|
- if res.Transreturncode == "00000000" {
|
1050
|
|
- his := models.VMHisPatient{
|
1051
|
|
- Name: name,
|
1052
|
|
- Gender: gender,
|
1053
|
|
- Birthday: birthUnix,
|
1054
|
|
- MedicalTreatmentType: medical_care,
|
1055
|
|
- IdType: certificates,
|
1056
|
|
- IdCardNo: id_card,
|
1057
|
|
- BalanceAccountsType: settlementValue,
|
1058
|
|
- SocialType: social_type,
|
1059
|
|
- MedicalInsuranceNumber: medical_insurance_card,
|
1060
|
|
- RegisterType: register_type,
|
1061
|
|
- RegisterCost: registration_fee,
|
1062
|
|
- TreatmentCost: medical_expenses,
|
1063
|
|
- Status: 1,
|
1064
|
|
- Ctime: time.Now().Unix(),
|
1065
|
|
- Mtime: time.Now().Unix(),
|
1066
|
|
- Iinfo: resp_result,
|
1067
|
|
- PatientId: patient.ID,
|
1068
|
|
- RecordDate: theTime.Unix(),
|
1069
|
|
- UserOrgId: adminInfo.CurrentOrgId,
|
1070
|
|
- AdminUserId: admin_user_id,
|
1071
|
|
- IsReturn: 1,
|
1072
|
|
- IdCardType: id_card_type,
|
1073
|
|
- Doctor: doctor,
|
1074
|
|
- Departments: department,
|
1075
|
|
- YiliaoNumber: yiliao_number,
|
1076
|
|
- MzNumber: number,
|
1077
|
|
- Number: mz_number,
|
1078
|
|
- PsnNo: health_card_no,
|
1079
|
|
- PatientInfo: result001,
|
1080
|
|
- }
|
1081
|
|
- service.CreateHisPatientTwo(&his)
|
1082
|
|
- lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
1083
|
|
- if len(lists) == 1 {
|
1084
|
|
- service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1085
|
|
- }
|
1086
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1087
|
|
- "msg": "挂号成功",
|
1088
|
|
- })
|
1089
|
|
- } else {
|
1090
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1091
|
|
- "failed_code": -10,
|
1092
|
|
- "msg": res.Transreturnmessage,
|
1093
|
|
- })
|
1094
|
|
- return
|
|
1090
|
+ service.CreateHisPatientTwo(&his)
|
|
1091
|
+ lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
|
1092
|
+ if len(lists) == 1 {
|
|
1093
|
+ service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1095
|
1094
|
}
|
1096
|
|
-
|
|
1095
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1096
|
+ "msg": "挂号成功",
|
|
1097
|
+ })
|
|
1098
|
+ } else {
|
|
1099
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1100
|
+ "failed_code": -10,
|
|
1101
|
+ "msg": res.Transreturnmessage,
|
|
1102
|
+ })
|
|
1103
|
+ return
|
1097
|
1104
|
}
|
1098
|
1105
|
|
1099
|
|
- } else { //异地卡流程
|
1100
|
|
- //readCardBasResult := ReadCardBasHSM(number)
|
1101
|
|
- //fmt.Println(readCardBasResult)
|
1102
|
|
- //是否异地就医,是的话走鉴权流程,不是的话走门诊挂号
|
1103
|
|
- if is_yidi == 1 { //1本地就医
|
1104
|
|
- resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, "0305", yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
1105
|
|
- var dat map[string]interface{}
|
1106
|
|
- if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
1107
|
|
- fmt.Println(dat)
|
1108
|
|
- } else {
|
1109
|
|
- fmt.Println(err)
|
1110
|
|
- }
|
|
1106
|
+ }
|
1111
|
1107
|
|
1112
|
|
- userJSONBytes, _ := json.Marshal(dat)
|
|
1108
|
+ } else { //异地卡流程
|
|
1109
|
+ //readCardBasResult := ReadCardBasHSM(number)
|
|
1110
|
+ //fmt.Println(readCardBasResult)
|
|
1111
|
+ //是否异地就医,是的话走鉴权流程,不是的话走门诊挂号
|
|
1112
|
+ if is_yidi == 1 { //1本地就医
|
|
1113
|
+ resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, "0305", yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
|
1114
|
+ var dat map[string]interface{}
|
|
1115
|
+ if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
|
1116
|
+ fmt.Println(dat)
|
|
1117
|
+ } else {
|
|
1118
|
+ fmt.Println(err)
|
|
1119
|
+ }
|
1113
|
1120
|
|
1114
|
|
- var res ResultOne
|
1115
|
|
- if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
1116
|
|
- utils.ErrorLog("解析失败:%v", err)
|
1117
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1118
|
|
- return
|
|
1121
|
+ userJSONBytes, _ := json.Marshal(dat)
|
|
1122
|
+
|
|
1123
|
+ var res ResultOne
|
|
1124
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
1125
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1126
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1127
|
+ return
|
|
1128
|
+ }
|
|
1129
|
+ if res.Transreturncode == "00000000" {
|
|
1130
|
+ his := models.VMHisPatient{
|
|
1131
|
+ Name: name,
|
|
1132
|
+ Gender: gender,
|
|
1133
|
+ Birthday: birthUnix,
|
|
1134
|
+ MedicalTreatmentType: medical_care,
|
|
1135
|
+ IdType: certificates,
|
|
1136
|
+ IdCardNo: id_card,
|
|
1137
|
+ BalanceAccountsType: settlementValue,
|
|
1138
|
+ SocialType: social_type,
|
|
1139
|
+ MedicalInsuranceNumber: medical_insurance_card,
|
|
1140
|
+ RegisterType: register_type,
|
|
1141
|
+ RegisterCost: registration_fee,
|
|
1142
|
+ TreatmentCost: medical_expenses,
|
|
1143
|
+ Status: 1,
|
|
1144
|
+ Ctime: time.Now().Unix(),
|
|
1145
|
+ Mtime: time.Now().Unix(),
|
|
1146
|
+ Iinfo: resp_result,
|
|
1147
|
+ PatientId: patient.ID,
|
|
1148
|
+ RecordDate: theTime.Unix(),
|
|
1149
|
+ UserOrgId: adminInfo.CurrentOrgId,
|
|
1150
|
+ AdminUserId: admin_user_id,
|
|
1151
|
+ IsReturn: 1,
|
|
1152
|
+ IdCardType: id_card_type,
|
|
1153
|
+ Doctor: doctor,
|
|
1154
|
+ Departments: department,
|
|
1155
|
+ YiliaoNumber: yiliao_number,
|
|
1156
|
+ MzNumber: number,
|
|
1157
|
+ Number: mz_number,
|
|
1158
|
+ PsnNo: health_card_no,
|
|
1159
|
+ PatientInfo: result001,
|
1119
|
1160
|
}
|
1120
|
|
- if res.Transreturncode == "00000000" {
|
1121
|
|
- his := models.VMHisPatient{
|
1122
|
|
- Name: name,
|
1123
|
|
- Gender: gender,
|
1124
|
|
- Birthday: birthUnix,
|
1125
|
|
- MedicalTreatmentType: medical_care,
|
1126
|
|
- IdType: certificates,
|
1127
|
|
- IdCardNo: id_card,
|
1128
|
|
- BalanceAccountsType: settlementValue,
|
1129
|
|
- SocialType: social_type,
|
1130
|
|
- MedicalInsuranceNumber: medical_insurance_card,
|
1131
|
|
- RegisterType: register_type,
|
1132
|
|
- RegisterCost: registration_fee,
|
1133
|
|
- TreatmentCost: medical_expenses,
|
1134
|
|
- Status: 1,
|
1135
|
|
- Ctime: time.Now().Unix(),
|
1136
|
|
- Mtime: time.Now().Unix(),
|
1137
|
|
- Iinfo: resp_result,
|
1138
|
|
- PatientId: patient.ID,
|
1139
|
|
- RecordDate: theTime.Unix(),
|
1140
|
|
- UserOrgId: adminInfo.CurrentOrgId,
|
1141
|
|
- AdminUserId: admin_user_id,
|
1142
|
|
- IsReturn: 1,
|
1143
|
|
- IdCardType: id_card_type,
|
1144
|
|
- Doctor: doctor,
|
1145
|
|
- Departments: department,
|
1146
|
|
- YiliaoNumber: yiliao_number,
|
1147
|
|
- MzNumber: number,
|
1148
|
|
- Number: mz_number,
|
1149
|
|
- PsnNo: health_card_no,
|
1150
|
|
- PatientInfo: result001,
|
1151
|
|
- }
|
1152
|
|
- service.CreateHisPatientTwo(&his)
|
1153
|
|
- lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
1154
|
|
- if len(lists) == 1 {
|
1155
|
|
- service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1156
|
|
- }
|
1157
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1158
|
|
- "msg": "挂号成功",
|
1159
|
|
- })
|
1160
|
|
- } else {
|
1161
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1162
|
|
- "failed_code": -10,
|
1163
|
|
- "msg": res.Transreturnmessage,
|
1164
|
|
- })
|
1165
|
|
- return
|
|
1161
|
+ service.CreateHisPatientTwo(&his)
|
|
1162
|
+ lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
|
1163
|
+ if len(lists) == 1 {
|
|
1164
|
+ service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1166
|
1165
|
}
|
|
1166
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1167
|
+ "msg": "挂号成功",
|
|
1168
|
+ })
|
|
1169
|
+ } else {
|
|
1170
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1171
|
+ "failed_code": -10,
|
|
1172
|
+ "msg": res.Transreturnmessage,
|
|
1173
|
+ })
|
|
1174
|
+ return
|
|
1175
|
+ }
|
1167
|
1176
|
|
1168
|
|
- } else { //异地就医需要走鉴权流程
|
1169
|
|
- //authResult := CardAuth(number)
|
1170
|
|
- //fmt.Println(authResult)
|
1171
|
|
- resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, "0305", yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
1172
|
|
- var dat map[string]interface{}
|
1173
|
|
- if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
1174
|
|
- fmt.Println(dat)
|
1175
|
|
- } else {
|
1176
|
|
- fmt.Println(err)
|
1177
|
|
- }
|
|
1177
|
+ } else { //异地就医需要走鉴权流程
|
|
1178
|
+ //authResult := CardAuth(number)
|
|
1179
|
+ //fmt.Println(authResult)
|
|
1180
|
+ resp_result := service.SzybMZ002(opera_name, opera_code, miConfig.Code, "0305", yiliao_number, verifyCode, number, mz_number, version_code, custom_code, custom_project_name, allPrice, medical_care)
|
|
1181
|
+ var dat map[string]interface{}
|
|
1182
|
+ if err := json.Unmarshal([]byte(resp_result), &dat); err == nil {
|
|
1183
|
+ fmt.Println(dat)
|
|
1184
|
+ } else {
|
|
1185
|
+ fmt.Println(err)
|
|
1186
|
+ }
|
1178
|
1187
|
|
1179
|
|
- userJSONBytes, _ := json.Marshal(dat)
|
|
1188
|
+ userJSONBytes, _ := json.Marshal(dat)
|
1180
|
1189
|
|
1181
|
|
- var res ResultOne
|
1182
|
|
- if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
1183
|
|
- utils.ErrorLog("解析失败:%v", err)
|
1184
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1185
|
|
- return
|
|
1190
|
+ var res ResultOne
|
|
1191
|
+ if err := json.Unmarshal(userJSONBytes, &res); err != nil {
|
|
1192
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1193
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1194
|
+ return
|
|
1195
|
+ }
|
|
1196
|
+ if res.Transreturncode == "00000000" {
|
|
1197
|
+ his := models.VMHisPatient{
|
|
1198
|
+ Name: name,
|
|
1199
|
+ Gender: gender,
|
|
1200
|
+ Birthday: birthUnix,
|
|
1201
|
+ MedicalTreatmentType: medical_care,
|
|
1202
|
+ IdType: certificates,
|
|
1203
|
+ IdCardNo: id_card,
|
|
1204
|
+ BalanceAccountsType: settlementValue,
|
|
1205
|
+ SocialType: social_type,
|
|
1206
|
+ MedicalInsuranceNumber: medical_insurance_card,
|
|
1207
|
+ RegisterType: register_type,
|
|
1208
|
+ RegisterCost: registration_fee,
|
|
1209
|
+ TreatmentCost: medical_expenses,
|
|
1210
|
+ Status: 1,
|
|
1211
|
+ Ctime: time.Now().Unix(),
|
|
1212
|
+ Mtime: time.Now().Unix(),
|
|
1213
|
+ Iinfo: resp_result,
|
|
1214
|
+ PatientId: patient.ID,
|
|
1215
|
+ RecordDate: theTime.Unix(),
|
|
1216
|
+ UserOrgId: adminInfo.CurrentOrgId,
|
|
1217
|
+ AdminUserId: admin_user_id,
|
|
1218
|
+ IsReturn: 1,
|
|
1219
|
+ IdCardType: id_card_type,
|
|
1220
|
+ Doctor: doctor,
|
|
1221
|
+ Departments: department,
|
|
1222
|
+ YiliaoNumber: yiliao_number,
|
|
1223
|
+ MzNumber: number,
|
|
1224
|
+ Number: mz_number,
|
|
1225
|
+ PsnNo: health_card_no,
|
|
1226
|
+ PatientInfo: result001,
|
1186
|
1227
|
}
|
1187
|
|
- if res.Transreturncode == "00000000" {
|
1188
|
|
- his := models.VMHisPatient{
|
1189
|
|
- Name: name,
|
1190
|
|
- Gender: gender,
|
1191
|
|
- Birthday: birthUnix,
|
1192
|
|
- MedicalTreatmentType: medical_care,
|
1193
|
|
- IdType: certificates,
|
1194
|
|
- IdCardNo: id_card,
|
1195
|
|
- BalanceAccountsType: settlementValue,
|
1196
|
|
- SocialType: social_type,
|
1197
|
|
- MedicalInsuranceNumber: medical_insurance_card,
|
1198
|
|
- RegisterType: register_type,
|
1199
|
|
- RegisterCost: registration_fee,
|
1200
|
|
- TreatmentCost: medical_expenses,
|
1201
|
|
- Status: 1,
|
1202
|
|
- Ctime: time.Now().Unix(),
|
1203
|
|
- Mtime: time.Now().Unix(),
|
1204
|
|
- Iinfo: resp_result,
|
1205
|
|
- PatientId: patient.ID,
|
1206
|
|
- RecordDate: theTime.Unix(),
|
1207
|
|
- UserOrgId: adminInfo.CurrentOrgId,
|
1208
|
|
- AdminUserId: admin_user_id,
|
1209
|
|
- IsReturn: 1,
|
1210
|
|
- IdCardType: id_card_type,
|
1211
|
|
- Doctor: doctor,
|
1212
|
|
- Departments: department,
|
1213
|
|
- YiliaoNumber: yiliao_number,
|
1214
|
|
- MzNumber: number,
|
1215
|
|
- Number: mz_number,
|
1216
|
|
- PsnNo: health_card_no,
|
1217
|
|
- PatientInfo: result001,
|
1218
|
|
- }
|
1219
|
|
- service.CreateHisPatientTwo(&his)
|
1220
|
|
- lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
1221
|
|
- if len(lists) == 1 {
|
1222
|
|
- service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1223
|
|
- }
|
1224
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1225
|
|
- "msg": "挂号成功",
|
1226
|
|
- })
|
1227
|
|
- } else {
|
1228
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1229
|
|
- "failed_code": -10,
|
1230
|
|
- "msg": res.Transreturnmessage,
|
1231
|
|
- })
|
1232
|
|
- return
|
|
1228
|
+ service.CreateHisPatientTwo(&his)
|
|
1229
|
+ lists, _ := service.GetHisPatientInfoList(adminInfo.CurrentOrgId, patient.ID, theTime.Unix())
|
|
1230
|
+ if len(lists) == 1 {
|
|
1231
|
+ service.UpdateHisPrescriptionHisID(his.ID, patient.ID, theTime.Unix(), adminInfo.CurrentOrgId)
|
1233
|
1232
|
}
|
1234
|
|
-
|
|
1233
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1234
|
+ "msg": "挂号成功",
|
|
1235
|
+ })
|
|
1236
|
+ } else {
|
|
1237
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1238
|
+ "failed_code": -10,
|
|
1239
|
+ "msg": res.Transreturnmessage,
|
|
1240
|
+ })
|
|
1241
|
+ return
|
1235
|
1242
|
}
|
|
1243
|
+
|
1236
|
1244
|
}
|
1237
|
|
- } else {
|
1238
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
|
1239
|
|
- return
|
1240
|
1245
|
}
|
1241
|
1246
|
} else {
|
1242
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeRegisterRepeatException)
|
|
1247
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoPateintException)
|
1243
|
1248
|
return
|
1244
|
1249
|
}
|
|
1250
|
+
|
1245
|
1251
|
}
|
1246
|
1252
|
|
1247
|
1253
|
//func (c *SZHisApiController) GetInfo() {
|
|
@@ -2172,7 +2178,7 @@ func (c *SZHisApiController) GetSettleInfo() {
|
2172
|
2178
|
var end_time int64
|
2173
|
2179
|
|
2174
|
2180
|
if settle_accounts_type == 1 { //日结
|
2175
|
|
- prescriptions, _ = service.GetHisPrescription(adminUser.CurrentOrgId, patient_id, recordDateTime)
|
|
2181
|
+ prescriptions, _ = service.GetNewHisPrescription(adminUser.CurrentOrgId, his_patient_id, recordDateTime)
|
2176
|
2182
|
|
2177
|
2183
|
} else { //月结
|
2178
|
2184
|
start_time_str := c.GetString("start_time")
|
|
@@ -2215,7 +2221,7 @@ func (c *SZHisApiController) GetSettleInfo() {
|
2215
|
2221
|
adminRole_two, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, patientPrescription.DoctorId)
|
2216
|
2222
|
|
2217
|
2223
|
adminRole, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, admin_user_id)
|
2218
|
|
- his, err := service.GetNewHisPatientInfo(adminUser.CurrentOrgId, his_patient_id, recordDateTime)
|
|
2224
|
+ his, err := service.GetHisPatientInfo(adminUser.CurrentOrgId, his_patient_id, recordDateTime)
|
2219
|
2225
|
mz_number := his.Number
|
2220
|
2226
|
number := miConfig.Code + year + month + day +
|
2221
|
2227
|
fmt.Sprintf("%07v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(10000000)) // 定点协议机构编码(5位)+日期(8位)+流水号(7位)
|
|
@@ -2395,7 +2401,7 @@ func (c *SZHisApiController) GetSettleInfo() {
|
2395
|
2401
|
SettleAccountsDate: recordDateTime,
|
2396
|
2402
|
Ctime: time.Now().Unix(),
|
2397
|
2403
|
Mtime: time.Now().Unix(),
|
2398
|
|
- Status: 1,
|
|
2404
|
+ Status: 0,
|
2399
|
2405
|
Number: chrg_bchno,
|
2400
|
2406
|
Infcode: 0,
|
2401
|
2407
|
WarnMsg: "",
|
|
@@ -2512,6 +2518,7 @@ func (c *SZHisApiController) GetSettleInfo() {
|
2512
|
2518
|
|
2513
|
2519
|
if res.Transreturncode == "00000000" {
|
2514
|
2520
|
order.OrderStatus = 2
|
|
2521
|
+ order.Status = 1
|
2515
|
2522
|
order.PayWay = pay_way
|
2516
|
2523
|
order.PayPrice = pay_price
|
2517
|
2524
|
order.PayCardNo = pay_card_no
|