|
@@ -872,21 +872,31 @@ func (c *HisApiController) Get3511() {
|
872
|
872
|
})
|
873
|
873
|
}
|
874
|
874
|
|
875
|
|
- } else {
|
876
|
|
-
|
877
|
|
- result1, result2, _ := service.FJyb3511(struct3508)
|
878
|
|
- saveLog(result1, result2, "3511", "3511")
|
879
|
|
-
|
|
875
|
+ } else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "340") {
|
880
|
876
|
var res models.Result3511
|
881
|
|
- var respJSON2 map[string]interface{}
|
882
|
|
- if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
|
877
|
+ //安徽
|
|
878
|
+ data := make(map[string]interface{})
|
|
879
|
+ data["struct_3511s"] = struct3508
|
|
880
|
+ client := &http.Client{}
|
|
881
|
+ bytesData, _ := json.Marshal(data)
|
|
882
|
+ var req *http.Request
|
|
883
|
+ req, _ = http.NewRequest("POST", miConfig.SecretKey+"ahyb/3511", bytes.NewReader(bytesData))
|
|
884
|
+ resp, _ := client.Do(req)
|
|
885
|
+ defer resp.Body.Close()
|
|
886
|
+ body, ioErr := ioutil.ReadAll(resp.Body)
|
|
887
|
+ if ioErr != nil {
|
|
888
|
+ utils.ErrorLog("接口返回数据读取失败: %v", ioErr)
|
|
889
|
+ }
|
|
890
|
+ var respJSON map[string]interface{}
|
|
891
|
+ if err := json.Unmarshal([]byte(body), &respJSON); err != nil {
|
883
|
892
|
utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
884
|
893
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
885
|
894
|
return
|
886
|
895
|
}
|
887
|
|
- userJSONBytes2, _ := json.Marshal(respJSON2)
|
888
|
|
- if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
889
|
|
- utils.ErrorLog("解析失败:%v", err)
|
|
896
|
+ respJSON = respJSON["data"].(map[string]interface{})["pre"].(map[string]interface{})
|
|
897
|
+ result, _ := json.Marshal(respJSON)
|
|
898
|
+ if err := json.Unmarshal([]byte(result), &res); err != nil {
|
|
899
|
+ //utils.ErrorLog("解析失败:%v", err)
|
890
|
900
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
891
|
901
|
return
|
892
|
902
|
}
|
|
@@ -900,44 +910,13 @@ func (c *HisApiController) Get3511() {
|
900
|
910
|
"info": res.Output,
|
901
|
911
|
})
|
902
|
912
|
}
|
903
|
|
- }
|
904
|
|
-
|
905
|
|
-}
|
906
|
|
-func (c *HisApiController) Get3512() {
|
907
|
|
- admin_user_id, _ := c.GetInt64("admin_user_id")
|
908
|
|
- drug_id, _ := c.GetInt64("id")
|
909
|
|
- start_time := c.GetString("start_time")
|
910
|
|
- end_time := c.GetString("end_time")
|
911
|
|
-
|
912
|
|
- adminUser := c.GetAdminUserInfo()
|
913
|
|
- curRoles, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, admin_user_id)
|
914
|
|
- miConfig, _ := service.FindMedicalInsuranceInfo(adminUser.CurrentOrgId)
|
915
|
|
- drug, _ := service.GetDrugByID(drug_id)
|
916
|
913
|
|
917
|
|
- var struct3508 models.Struct3512
|
918
|
|
- struct3508.FixmedinsCode = miConfig.Code
|
|
914
|
+ }else {
|
919
|
915
|
|
920
|
|
- struct3508.OrgName = miConfig.OrgName
|
921
|
|
- struct3508.AccessKey = miConfig.AccessKey
|
922
|
|
- struct3508.Opter = curRoles.UserName
|
923
|
|
- struct3508.RequestUrl = miConfig.Url
|
924
|
|
- struct3508.Url = miConfig.Url
|
925
|
|
- struct3508.AppId = miConfig.Cainfo
|
926
|
|
- struct3508.AppSecret = miConfig.AppSecret
|
927
|
|
- struct3508.Enckey = miConfig.EncKey
|
928
|
|
- struct3508.SignKey = miConfig.SignKey
|
929
|
|
- struct3508.SecretKey = miConfig.SecretKey
|
930
|
|
- struct3508.MedListCodg = drug.MedicalInsuranceNumber
|
931
|
|
- struct3508.Begndate = start_time
|
932
|
|
- struct3508.Enddate = end_time
|
933
|
|
- struct3508.MdtrtareaAdmvs = miConfig.MdtrtareaAdmvs
|
934
|
|
- struct3508.InsuplcAdmdvs = miConfig.InsuplcAdmdvs
|
935
|
|
-
|
936
|
|
- if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "440") { //广东
|
937
|
|
- result1, result2 := service.Gdyb3512(struct3508, struct3508.SecretKey)
|
938
|
|
- saveLog(result1, result2, "3512", "3512")
|
|
916
|
+ result1, result2, _ := service.FJyb3511(struct3508)
|
|
917
|
+ saveLog(result1, result2, "3511", "3511")
|
939
|
918
|
|
940
|
|
- var res models.Result3512
|
|
919
|
+ var res models.Result3511
|
941
|
920
|
var respJSON2 map[string]interface{}
|
942
|
921
|
if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
943
|
922
|
utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
@@ -960,37 +939,118 @@ func (c *HisApiController) Get3512() {
|
960
|
939
|
"info": res.Output,
|
961
|
940
|
})
|
962
|
941
|
}
|
|
942
|
+ }
|
963
|
943
|
|
964
|
|
- } else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "350") {
|
|
944
|
+}
|
|
945
|
+func (c *HisApiController) Get3512() {
|
|
946
|
+ admin_user_id, _ := c.GetInt64("admin_user_id")
|
|
947
|
+ drug_id, _ := c.GetInt64("id")
|
|
948
|
+ start_time := c.GetString("start_time")
|
|
949
|
+ end_time := c.GetString("end_time")
|
965
|
950
|
|
966
|
|
- result1, result2, _ := service.FJyb3512(struct3508)
|
967
|
|
- saveLog(result1, result2, "3512", "3512")
|
|
951
|
+ adminUser := c.GetAdminUserInfo()
|
|
952
|
+ curRoles, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, admin_user_id)
|
|
953
|
+ miConfig, _ := service.FindMedicalInsuranceInfo(adminUser.CurrentOrgId)
|
|
954
|
+ drug, _ := service.GetDrugByIDTwo(drug_id,adminUser.CurrentOrgId)
|
|
955
|
+
|
|
956
|
+ var infos models.Output2
|
|
957
|
+ for _, item := range drug{
|
|
958
|
+ var struct3508 models.Struct3512
|
|
959
|
+ struct3508.FixmedinsCode = miConfig.Code
|
|
960
|
+
|
|
961
|
+ struct3508.OrgName = miConfig.OrgName
|
|
962
|
+ struct3508.AccessKey = miConfig.AccessKey
|
|
963
|
+ struct3508.Opter = curRoles.UserName
|
|
964
|
+ struct3508.RequestUrl = miConfig.Url
|
|
965
|
+ struct3508.Url = miConfig.Url
|
|
966
|
+ struct3508.AppId = miConfig.Cainfo
|
|
967
|
+ struct3508.AppSecret = miConfig.AppSecret
|
|
968
|
+ struct3508.Enckey = miConfig.EncKey
|
|
969
|
+ struct3508.SignKey = miConfig.SignKey
|
|
970
|
+ struct3508.SecretKey = miConfig.SecretKey
|
|
971
|
+ struct3508.MedListCodg = item.MedicalInsuranceNumber
|
|
972
|
+ struct3508.Begndate = start_time
|
|
973
|
+ struct3508.Enddate = end_time
|
|
974
|
+ struct3508.MdtrtareaAdmvs = miConfig.MdtrtareaAdmvs
|
|
975
|
+ struct3508.InsuplcAdmdvs = miConfig.InsuplcAdmdvs
|
|
976
|
+
|
|
977
|
+ if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "440") { //广东
|
|
978
|
+ result1, result2 := service.Gdyb3512(struct3508, struct3508.SecretKey)
|
|
979
|
+ saveLog(result1, result2, "3512", "3512")
|
|
980
|
+
|
|
981
|
+ var res models.Result3512
|
|
982
|
+ var respJSON2 map[string]interface{}
|
|
983
|
+ if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
|
984
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
985
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
986
|
+ return
|
|
987
|
+ }
|
|
988
|
+ userJSONBytes2, _ := json.Marshal(respJSON2)
|
|
989
|
+ if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
|
990
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
991
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
992
|
+ return
|
|
993
|
+ }
|
968
|
994
|
|
969
|
|
- var res models.Result3512
|
970
|
|
- var respJSON2 map[string]interface{}
|
971
|
|
- if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
972
|
|
- utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
973
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
974
|
|
- return
|
975
|
|
- }
|
976
|
|
- userJSONBytes2, _ := json.Marshal(respJSON2)
|
977
|
|
- if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
978
|
|
- utils.ErrorLog("解析失败:%v", err)
|
979
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
980
|
|
- return
|
981
|
|
- }
|
982
|
|
- if res.Infcode == -1 {
|
983
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
984
|
|
- "failed_code": -10,
|
985
|
|
- "msg": res.ErrMsg,
|
986
|
|
- })
|
987
|
|
- } else {
|
988
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
989
|
|
- "info": res.Output,
|
990
|
|
- })
|
991
|
|
- }
|
|
995
|
+ infos = append(infos, res.Output...)
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+ } else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "350") {
|
992
|
999
|
|
|
1000
|
+ result1, result2, _ := service.FJyb3512(struct3508)
|
|
1001
|
+ saveLog(result1, result2, "3512", "3512")
|
|
1002
|
+
|
|
1003
|
+ var res models.Result3512
|
|
1004
|
+ var respJSON2 map[string]interface{}
|
|
1005
|
+ if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
|
1006
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
1007
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1008
|
+ return
|
|
1009
|
+ }
|
|
1010
|
+ userJSONBytes2, _ := json.Marshal(respJSON2)
|
|
1011
|
+ if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
|
1012
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1013
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1014
|
+ return
|
|
1015
|
+ }
|
|
1016
|
+ infos = append(infos, res.Output...)
|
|
1017
|
+
|
|
1018
|
+ }else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "340") {
|
|
1019
|
+ var res models.Result3512
|
|
1020
|
+ //安徽
|
|
1021
|
+ data := make(map[string]interface{})
|
|
1022
|
+ data["struct_3512s"] = struct3508
|
|
1023
|
+ client := &http.Client{}
|
|
1024
|
+ bytesData, _ := json.Marshal(data)
|
|
1025
|
+ var req *http.Request
|
|
1026
|
+ req, _ = http.NewRequest("POST", miConfig.SecretKey+"ahyb/3512", bytes.NewReader(bytesData))
|
|
1027
|
+ resp, _ := client.Do(req)
|
|
1028
|
+ defer resp.Body.Close()
|
|
1029
|
+ body, ioErr := ioutil.ReadAll(resp.Body)
|
|
1030
|
+ if ioErr != nil {
|
|
1031
|
+ utils.ErrorLog("接口返回数据读取失败: %v", ioErr)
|
|
1032
|
+ }
|
|
1033
|
+ var respJSON map[string]interface{}
|
|
1034
|
+ if err := json.Unmarshal([]byte(body), &respJSON); err != nil {
|
|
1035
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
1036
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1037
|
+ return
|
|
1038
|
+ }
|
|
1039
|
+ respJSON = respJSON["data"].(map[string]interface{})["pre"].(map[string]interface{})
|
|
1040
|
+ result, _ := json.Marshal(respJSON)
|
|
1041
|
+ if err := json.Unmarshal([]byte(result), &res); err != nil {
|
|
1042
|
+ //utils.ErrorLog("解析失败:%v", err)
|
|
1043
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1044
|
+ return
|
|
1045
|
+ }
|
|
1046
|
+ infos = append(infos, res.Output...)
|
|
1047
|
+ }
|
993
|
1048
|
}
|
|
1049
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1050
|
+ "info": infos,
|
|
1051
|
+ })
|
|
1052
|
+
|
|
1053
|
+
|
994
|
1054
|
|
995
|
1055
|
}
|
996
|
1056
|
func (c *HisApiController) Get3513() {
|
|
@@ -1002,85 +1062,171 @@ func (c *HisApiController) Get3513() {
|
1002
|
1062
|
adminUser := c.GetAdminUserInfo()
|
1003
|
1063
|
curRoles, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, admin_user_id)
|
1004
|
1064
|
miConfig, _ := service.FindMedicalInsuranceInfo(adminUser.CurrentOrgId)
|
1005
|
|
- drug, _ := service.GetDrugByID(drug_id)
|
|
1065
|
+ //drug, _ := service.GetDrugByID(drug_id)
|
|
1066
|
+ drug, _ := service.GetDrugByIDTwo(drug_id,adminUser.CurrentOrgId)
|
|
1067
|
+
|
|
1068
|
+ var infos models.Output3
|
|
1069
|
+ for _, item := range drug {
|
|
1070
|
+
|
|
1071
|
+ var struct3508 models.Struct3513
|
|
1072
|
+ struct3508.FixmedinsCode = miConfig.Code
|
|
1073
|
+
|
|
1074
|
+ struct3508.OrgName = miConfig.OrgName
|
|
1075
|
+ struct3508.AccessKey = miConfig.AccessKey
|
|
1076
|
+ struct3508.Opter = curRoles.UserName
|
|
1077
|
+ struct3508.RequestUrl = miConfig.Url
|
|
1078
|
+ struct3508.Url = miConfig.Url
|
|
1079
|
+ struct3508.AppId = miConfig.Cainfo
|
|
1080
|
+ struct3508.AppSecret = miConfig.AppSecret
|
|
1081
|
+ struct3508.Enckey = miConfig.EncKey
|
|
1082
|
+ struct3508.SignKey = miConfig.SignKey
|
|
1083
|
+ struct3508.SecretKey = miConfig.SecretKey
|
|
1084
|
+ struct3508.MedListCodg = item.MedicalInsuranceNumber
|
|
1085
|
+ struct3508.Begndate = start_time
|
|
1086
|
+ struct3508.Enddate = end_time
|
|
1087
|
+ struct3508.MdtrtareaAdmvs = miConfig.MdtrtareaAdmvs
|
|
1088
|
+ struct3508.InsuplcAdmdvs = miConfig.InsuplcAdmdvs
|
|
1089
|
+ if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "440") { //广东
|
|
1090
|
+ result1, result2 := service.Gdyb3513(struct3508, struct3508.SecretKey)
|
|
1091
|
+ saveLog(result1, result2, "3513", "3513")
|
|
1092
|
+
|
|
1093
|
+ var res models.Result3513
|
|
1094
|
+ var respJSON2 map[string]interface{}
|
|
1095
|
+ if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
|
1096
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
1097
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1098
|
+ return
|
|
1099
|
+ }
|
|
1100
|
+ userJSONBytes2, _ := json.Marshal(respJSON2)
|
|
1101
|
+ if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
|
1102
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1103
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1104
|
+ return
|
|
1105
|
+ }
|
|
1106
|
+ infos = append(infos, res.Output...)
|
1006
|
1107
|
|
1007
|
|
- var struct3508 models.Struct3513
|
1008
|
|
- struct3508.FixmedinsCode = miConfig.Code
|
|
1108
|
+ } else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "350") {
|
1009
|
1109
|
|
1010
|
|
- struct3508.OrgName = miConfig.OrgName
|
1011
|
|
- struct3508.AccessKey = miConfig.AccessKey
|
1012
|
|
- struct3508.Opter = curRoles.UserName
|
1013
|
|
- struct3508.RequestUrl = miConfig.Url
|
1014
|
|
- struct3508.Url = miConfig.Url
|
1015
|
|
- struct3508.AppId = miConfig.Cainfo
|
1016
|
|
- struct3508.AppSecret = miConfig.AppSecret
|
1017
|
|
- struct3508.Enckey = miConfig.EncKey
|
1018
|
|
- struct3508.SignKey = miConfig.SignKey
|
1019
|
|
- struct3508.SecretKey = miConfig.SecretKey
|
1020
|
|
- struct3508.MedListCodg = drug.MedicalInsuranceNumber
|
1021
|
|
- struct3508.Begndate = start_time
|
1022
|
|
- struct3508.Enddate = end_time
|
1023
|
|
- struct3508.MdtrtareaAdmvs = miConfig.MdtrtareaAdmvs
|
1024
|
|
- struct3508.InsuplcAdmdvs = miConfig.InsuplcAdmdvs
|
1025
|
|
- if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "440") { //广东
|
1026
|
|
- result1, result2 := service.Gdyb3513(struct3508, struct3508.SecretKey)
|
1027
|
|
- saveLog(result1, result2, "3513", "3513")
|
|
1110
|
+ result1, result2, _ := service.FJyb3513(struct3508)
|
|
1111
|
+ saveLog(result1, result2, "3513", "3513")
|
1028
|
1112
|
|
1029
|
|
- var res models.Result3513
|
1030
|
|
- var respJSON2 map[string]interface{}
|
1031
|
|
- if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
1032
|
|
- utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
1033
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1034
|
|
- return
|
1035
|
|
- }
|
1036
|
|
- userJSONBytes2, _ := json.Marshal(respJSON2)
|
1037
|
|
- if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
1038
|
|
- utils.ErrorLog("解析失败:%v", err)
|
1039
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1040
|
|
- return
|
1041
|
|
- }
|
1042
|
|
- if res.Infcode == -1 {
|
1043
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1044
|
|
- "failed_code": -10,
|
1045
|
|
- "msg": res.ErrMsg,
|
1046
|
|
- })
|
1047
|
|
- } else {
|
1048
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1049
|
|
- "info": res.Output,
|
1050
|
|
- })
|
1051
|
|
- }
|
|
1113
|
+ var res models.Result3513
|
|
1114
|
+ var respJSON2 map[string]interface{}
|
|
1115
|
+ if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
|
1116
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
1117
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1118
|
+ return
|
|
1119
|
+ }
|
|
1120
|
+ userJSONBytes2, _ := json.Marshal(respJSON2)
|
|
1121
|
+ if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
|
1122
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1123
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1124
|
+ return
|
|
1125
|
+ }
|
|
1126
|
+ infos = append(infos, res.Output...)
|
|
1127
|
+ } else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "340") {
|
|
1128
|
+ var res models.Result3513
|
|
1129
|
+ //安徽
|
|
1130
|
+ data := make(map[string]interface{})
|
|
1131
|
+ data["struct_3513s"] = struct3508
|
|
1132
|
+ client := &http.Client{}
|
|
1133
|
+ bytesData, _ := json.Marshal(data)
|
|
1134
|
+ var req *http.Request
|
|
1135
|
+ req, _ = http.NewRequest("POST", miConfig.SecretKey+"ahyb/3513", bytes.NewReader(bytesData))
|
|
1136
|
+ resp, _ := client.Do(req)
|
|
1137
|
+ defer resp.Body.Close()
|
|
1138
|
+ body, ioErr := ioutil.ReadAll(resp.Body)
|
|
1139
|
+ if ioErr != nil {
|
|
1140
|
+ utils.ErrorLog("接口返回数据读取失败: %v", ioErr)
|
|
1141
|
+ }
|
|
1142
|
+ var respJSON map[string]interface{}
|
|
1143
|
+ if err := json.Unmarshal([]byte(body), &respJSON); err != nil {
|
|
1144
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
1145
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1146
|
+ return
|
|
1147
|
+ }
|
|
1148
|
+ respJSON = respJSON["data"].(map[string]interface{})["pre"].(map[string]interface{})
|
|
1149
|
+ result, _ := json.Marshal(respJSON)
|
|
1150
|
+ if err := json.Unmarshal([]byte(result), &res); err != nil {
|
|
1151
|
+ //utils.ErrorLog("解析失败:%v", err)
|
|
1152
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1153
|
+ return
|
|
1154
|
+ }
|
|
1155
|
+ infos = append(infos, res.Output...)
|
1052
|
1156
|
|
1053
|
|
- } else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "350") {
|
|
1157
|
+ }else if strings.HasPrefix(miConfig.MdtrtareaAdmvs[0:3], "361") { //
|
|
1158
|
+ result1, result2 := service.JXyb3513(struct3508, struct3508.SecretKey, struct3508.AccessKey, struct3508.RequestUrl)
|
|
1159
|
+ saveLog(result1, result2, "3513", "3513")
|
1054
|
1160
|
|
1055
|
|
- result1, result2, _ := service.FJyb3513(struct3508)
|
1056
|
|
- saveLog(result1, result2, "3513", "3513")
|
|
1161
|
+ var res models.Result3513
|
|
1162
|
+ var respJSON2 map[string]interface{}
|
|
1163
|
+ if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
|
1164
|
+ utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
|
1165
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1166
|
+ return
|
|
1167
|
+ }
|
|
1168
|
+ userJSONBytes2, _ := json.Marshal(respJSON2)
|
|
1169
|
+ if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
|
1170
|
+ utils.ErrorLog("解析失败:%v", err)
|
|
1171
|
+ c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
1172
|
+ return
|
|
1173
|
+ }
|
|
1174
|
+ infos = append(infos, res.Output...)
|
1057
|
1175
|
|
1058
|
|
- var res models.Result3513
|
1059
|
|
- var respJSON2 map[string]interface{}
|
1060
|
|
- if err := json.Unmarshal([]byte(string(result1)), &respJSON2); err != nil {
|
1061
|
|
- utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
|
1062
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1063
|
|
- return
|
1064
|
|
- }
|
1065
|
|
- userJSONBytes2, _ := json.Marshal(respJSON2)
|
1066
|
|
- if err := json.Unmarshal(userJSONBytes2, &res); err != nil {
|
1067
|
|
- utils.ErrorLog("解析失败:%v", err)
|
1068
|
|
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
1069
|
|
- return
|
1070
|
|
- }
|
1071
|
|
- if res.Infcode == -1 {
|
1072
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1073
|
|
- "failed_code": -10,
|
1074
|
|
- "msg": res.ErrMsg,
|
1075
|
|
- })
|
1076
|
|
- } else {
|
1077
|
|
- c.ServeSuccessJSON(map[string]interface{}{
|
1078
|
|
- "info": res.Output,
|
1079
|
|
- })
|
1080
|
1176
|
}
|
|
1177
|
+ }
|
|
1178
|
+ type Newinfo struct {
|
|
1179
|
+ FixmedinsCode string
|
|
1180
|
+ MedListCodg string
|
|
1181
|
+ MedinsListCodg string
|
|
1182
|
+ MedinsListName string
|
|
1183
|
+ FixmedinsBchno string
|
|
1184
|
+ MdtrtId string
|
|
1185
|
+ MdtrtSetlType string
|
|
1186
|
+ BkkpSn string
|
|
1187
|
+ DrugTracCodg string
|
|
1188
|
+ PsnNo string
|
|
1189
|
+ PsnCertType string
|
|
1190
|
+ Certno string
|
|
1191
|
+ PsnName string
|
|
1192
|
+ Memo string
|
|
1193
|
+ TrdnFlag string
|
|
1194
|
+ UpdtTime string
|
|
1195
|
+ OpterName string
|
|
1196
|
+ Rid string
|
|
1197
|
+ CrteTime string
|
|
1198
|
+ OptTime string
|
|
1199
|
+ OpterId string
|
|
1200
|
+ CrterName string
|
|
1201
|
+ CrterId string
|
|
1202
|
+ OptinsNo string
|
|
1203
|
+ }
|
|
1204
|
+ var Newinfos []Newinfo
|
|
1205
|
+
|
|
1206
|
+ for _, item := range infos {
|
|
1207
|
+ var ni Newinfo
|
|
1208
|
+ patient, _ := service.GetPatientByIDCard(item.Certno, c.GetAdminUserInfo().CurrentOrgId)
|
|
1209
|
+
|
|
1210
|
+ //patient, _ := service.GetPatientByIDCard(item.Certno, c.GetAdminUserInfo().CurrentOrgId)
|
1081
|
1211
|
|
|
1212
|
+ numbers := strings.Split(item.FixmedinsBchno,"-")
|
|
1213
|
+
|
|
1214
|
+ flow := service.GetSaleDate(numbers[1])
|
|
1215
|
+ ni.MdtrtId = item.MdtrtId
|
|
1216
|
+ ni.UpdtTime = flow.SaleDate
|
|
1217
|
+ ni.PsnName = patient.Name
|
|
1218
|
+ ni.Certno = item.Certno
|
|
1219
|
+ ni.MedinsListName = item.MedinsListName
|
|
1220
|
+ ni.FixmedinsBchno = item.FixmedinsBchno
|
|
1221
|
+ ni.DrugTracCodg = item.DrugTracCodg
|
|
1222
|
+ ni.MedListCodg = patient.Name
|
|
1223
|
+ Newinfos = append(Newinfos, ni)
|
1082
|
1224
|
}
|
1083
|
1225
|
|
|
1226
|
+ c.ServeSuccessJSON(map[string]interface{}{
|
|
1227
|
+ "info": Newinfos,
|
|
1228
|
+ })
|
|
1229
|
+
|
1084
|
1230
|
}
|
1085
|
1231
|
func (c *HisApiController) Get35081() {
|
1086
|
1232
|
admin_user_id, _ := c.GetInt64("admin_user_id")
|
|
@@ -1230,6 +1376,15 @@ func (c *HisApiController) FJ3501AND3502() {
|
1230
|
1376
|
return
|
1231
|
1377
|
}
|
1232
|
1378
|
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
|
1233
|
1388
|
//库盘
|
1234
|
1389
|
|
1235
|
1390
|
for _, drug := range drugs {
|
|
@@ -5216,7 +5371,7 @@ func (c *HisApiController) ChangeDrugTen() {
|
5216
|
5371
|
return
|
5217
|
5372
|
}
|
5218
|
5373
|
userJSONBytes3, _ := json.Marshal(respJSON3)
|
5219
|
|
- if c.GetAdminUserInfo().CurrentOrgId == 10265 || c.GetAdminUserInfo().CurrentOrgId == 10188 || c.GetAdminUserInfo().CurrentOrgId == 10217 {
|
|
5374
|
+ if c.GetAdminUserInfo().CurrentOrgId == 10265 || c.GetAdminUserInfo().CurrentOrgId == 10188 || c.GetAdminUserInfo().CurrentOrgId == 10217 || c.GetAdminUserInfo().CurrentOrgId == 10633 {
|
5220
|
5375
|
if err := json.Unmarshal(userJSONBytes3, &res3507for10188); err != nil {
|
5221
|
5376
|
utils.ErrorLog("解析失败:%v", err)
|
5222
|
5377
|
c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
|
|
@@ -5873,6 +6028,11 @@ func SaleStock(org_id int64, pre models.HisPrescription, drug *models.DrugFlow,
|
5873
|
6028
|
struct3505.PharName = "易圣"
|
5874
|
6029
|
struct3505.PharPracCertNo = "D430726002209"
|
5875
|
6030
|
}
|
|
6031
|
+
|
|
6032
|
+ if org_id == 10633 {
|
|
6033
|
+ struct3505.PharName = "王敏"
|
|
6034
|
+ struct3505.PharPracCertNo = "342222199107214042"
|
|
6035
|
+ }
|
5876
|
6036
|
order := service.GetHisOrderByNumber(pre.BatchNumber)
|
5877
|
6037
|
struct3505.SetlId = order.SetlId
|
5878
|
6038
|
struct3505.MdtrtSn = order.MdtrtId
|
|
@@ -13463,7 +13623,7 @@ func Checkgd3101(c *HisApiController, patient_id int64, his_patient_id int64, ad
|
13463
|
13623
|
for _, item := range prescriptions {
|
13464
|
13624
|
for _, subItem := range item.HisDoctorAdviceInfo {
|
13465
|
13625
|
if len(subItem.BaseDrugLib.MedicalInsuranceNumber) > 0 {
|
13466
|
|
- spec := (subItem.BaseDrugLib.Dose + subItem.BaseDrugLib.DoseUnit) + "*" + strconv.FormatInt(subItem.BaseDrugLib.MinNumber, 10) + subItem.BaseDrugLib.MinUnit + "/" + subItem.BaseDrugLib.MaxUnit
|
|
13626
|
+ spec := (subItem.BaseDrugLib.Dose + subItem.BaseDrugLib.DoseUnit) + "/" + strconv.FormatInt(subItem.BaseDrugLib.MinNumber, 10) + subItem.BaseDrugLib.MinUnit
|
13467
|
13627
|
|
13468
|
13628
|
var order models.FsiOrderDtos
|
13469
|
13629
|
order.RxID = strconv.FormatInt(item.ID, 10)
|
|
@@ -13499,8 +13659,8 @@ func Checkgd3101(c *HisApiController, patient_id int64, his_patient_id int64, ad
|
13499
|
13659
|
for _, subItem := range item.HisPrescriptionProject {
|
13500
|
13660
|
if subItem.Type == 2 && len(subItem.HisProject.MedicalCode) > 0 {
|
13501
|
13661
|
var order models.FsiOrderDtos
|
13502
|
|
- order.RxID = strconv.FormatInt(item.ID, 10)
|
13503
|
|
- order.Rxno = strconv.FormatInt(item.ID, 10)
|
|
13662
|
+ order.RxID = strconv.FormatInt(subItem.ID, 10)
|
|
13663
|
+ order.Rxno = strconv.FormatInt(subItem.ID, 10)
|
13504
|
13664
|
order.LongDrordFlag = "0"
|
13505
|
13665
|
order.HilistType = "201"
|
13506
|
13666
|
order.ChrgType = "1"
|
|
@@ -21481,8 +21641,12 @@ type CustomFundPay struct {
|
21481
|
21641
|
func (c *HisApiController) GetbatchSettleList() {
|
21482
|
21642
|
//order_id, _ := c.GetInt64("order_id")
|
21483
|
21643
|
admin_user_id, _ := c.GetInt64("admin_user_id")
|
|
21644
|
+ start_date := c.GetString("start_date")
|
|
21645
|
+ end_date := c.GetString("end_date")
|
21484
|
21646
|
|
21485
|
|
- orders, _ := service.GetAllHisOrderTwo10485()
|
|
21647
|
+
|
|
21648
|
+
|
|
21649
|
+ orders, _ := service.GetAllHisOrderTwo10485(start_date,end_date)
|
21486
|
21650
|
|
21487
|
21651
|
for _, item := range orders {
|
21488
|
21652
|
|
|
@@ -34422,7 +34586,8 @@ func (c *HisApiController) GetPreUploadInfo() {
|
34422
|
34586
|
for _, item := range prescriptions {
|
34423
|
34587
|
if item.Type == 1 { //药品
|
34424
|
34588
|
for _, subItem := range item.HisDoctorAdviceInfo {
|
34425
|
|
- price, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", subItem.Price), 64)
|
|
34589
|
+ price, _ := strconv.ParseFloat(fmt.Sprintf("%.4f", subItem.Price), 64)
|
|
34590
|
+
|
34426
|
34591
|
total_one := price * subItem.PrescribingNumber
|
34427
|
34592
|
fmt.Println("subItem")
|
34428
|
34593
|
fmt.Println(subItem.Price)
|
|
@@ -34439,7 +34604,7 @@ func (c *HisApiController) GetPreUploadInfo() {
|
34439
|
34604
|
|
34440
|
34605
|
for _, subItem := range item.HisPrescriptionProject {
|
34441
|
34606
|
cnt, _ := strconv.ParseFloat(subItem.Count, 64)
|
34442
|
|
- price, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", subItem.Price), 64)
|
|
34607
|
+ price, _ := strconv.ParseFloat(fmt.Sprintf("%.4f", subItem.Price), 64)
|
34443
|
34608
|
total_one := price * cnt
|
34444
|
34609
|
total = total + total_one
|
34445
|
34610
|
}
|
|
@@ -38998,7 +39163,7 @@ func (c *HisApiController) GetCheckAccount() {
|
38998
|
39163
|
var res10188 ResultEightFor10188
|
38999
|
39164
|
if config.IsOpen == 1 {
|
39000
|
39165
|
if miConfig.MdtrtareaAdmvs == "320921" || miConfig.MdtrtareaAdmvs == "320982" || miConfig.MdtrtareaAdmvs == "320830" {
|
39001
|
|
- api := "http://192.168.2.3:9532/" + "jsyb/3201?" +
|
|
39166
|
+ api := miConfig.AppSecret + "jsyb/3201?" +
|
39002
|
39167
|
"insutype=" + insutype +
|
39003
|
39168
|
"&clr_type=" + clr_type +
|
39004
|
39169
|
"&setl_optins=" + clr_org +
|
|
@@ -39287,7 +39452,7 @@ func (c *HisApiController) GetCheckAccount() {
|
39287
|
39452
|
return
|
39288
|
39453
|
}
|
39289
|
39454
|
|
39290
|
|
- } else if miConfig.MdtrtareaAdmvs == "360302" {
|
|
39455
|
+ } else if miConfig.MdtrtareaAdmvs == "360100" {
|
39291
|
39456
|
|
39292
|
39457
|
//orders_two, _ := service.GetOrderByTimeFive(startime.Unix(), endtime.Unix(), adminUser.CurrentOrgId, insutype, "", clr_type, miConfig.MdtrtareaAdmvs)
|
39293
|
39458
|
//fixmedins_setl_cnt := int64(len(orders_two))
|
|
@@ -39313,14 +39478,12 @@ func (c *HisApiController) GetCheckAccount() {
|
39313
|
39478
|
baseParams.Doctor = role.UserName
|
39314
|
39479
|
baseParams.RequestUrl = miConfig.Url
|
39315
|
39480
|
|
39316
|
|
- if clr_type == "9903" {
|
39317
|
|
- clr_type = "9901"
|
39318
|
|
- }
|
|
39481
|
+
|
39319
|
39482
|
|
39320
|
39483
|
businessParams := models.BusinessParams{
|
39321
|
39484
|
Insutype: insutype,
|
39322
|
39485
|
ClrType: clr_type,
|
39323
|
|
- SetlOptins: "360302",
|
|
39486
|
+ SetlOptins: "360102",
|
39324
|
39487
|
StmtBegndate: start_time,
|
39325
|
39488
|
StmtEnddate: end_time,
|
39326
|
39489
|
MedfeeSumamt: 0,
|
|
@@ -39401,7 +39564,7 @@ func (c *HisApiController) GetCheckAccount() {
|
39401
|
39564
|
return
|
39402
|
39565
|
}
|
39403
|
39566
|
|
39404
|
|
- } else if miConfig.MdtrtareaAdmvs == "360100" {
|
|
39567
|
+ } else if miConfig.MdtrtareaAdmvs == "360106" {
|
39405
|
39568
|
|
39406
|
39569
|
//orders_two, _ := service.GetOrderByTimeFive(startime.Unix(), endtime.Unix(), adminUser.CurrentOrgId, insutype, "", clr_type, miConfig.MdtrtareaAdmvs)
|
39407
|
39570
|
//fixmedins_setl_cnt := int64(len(orders_two))
|
|
@@ -39434,7 +39597,7 @@ func (c *HisApiController) GetCheckAccount() {
|
39434
|
39597
|
businessParams := models.BusinessParams{
|
39435
|
39598
|
Insutype: insutype,
|
39436
|
39599
|
ClrType: clr_type,
|
39437
|
|
- SetlOptins: "360100",
|
|
39600
|
+ SetlOptins: "360102",
|
39438
|
39601
|
StmtBegndate: start_time,
|
39439
|
39602
|
StmtEnddate: end_time,
|
39440
|
39603
|
MedfeeSumamt: 0,
|