Browse Source

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

csx 3 years ago
parent
commit
03d646f5ec
2 changed files with 40 additions and 29 deletions
  1. 19 12
      controllers/sg/his_api_controller.go
  2. 21 17
      service/gdyb_service.go

+ 19 - 12
controllers/sg/his_api_controller.go View File

@@ -1805,11 +1805,11 @@ func (c *HisApiController) GetBatchSettleList() {
1805 1805
 		tempFunPays = append(tempFunPays, tempFunPay610100)
1806 1806
 		struct4101.CustomStruct = tempFunPays
1807 1807
 
1808
-		var tempOpspdiseinfos []service.OpspdiseinfoStruct
1808
+		var tempDiaginfos []service.DiaginfoStructTwo
1809 1809
 		var tempOpspdiseinfo2 service.OpspdiseinfoStruct
1810
-		//sickConfig, _ := service.FindDiagnoseById(his.Diagnosis)
1810
+		var tempOpspdiseinfos []service.OpspdiseinfoStruct
1811 1811
 
1812
-		diagnosis_ids := strings.Split(his.Diagnosis, ",")
1812
+		diagnosis_ids := strings.Split(order.Diagnosis, ",")
1813 1813
 		var config []*models.HisXtDiagnoseConfig
1814 1814
 		for _, item := range diagnosis_ids {
1815 1815
 			id, _ := strconv.ParseInt(item, 10, 64)
@@ -1818,19 +1818,26 @@ func (c *HisApiController) GetBatchSettleList() {
1818 1818
 		}
1819 1819
 
1820 1820
 		for index, item := range config {
1821
-			var tempOpspdiseinfo service.OpspdiseinfoStruct
1822
-			tempOpspdiseinfo.DiagCode = item.CountryCode
1823
-			tempOpspdiseinfo.DiagName = item.CountryContentName
1824
-			tempOpspdiseinfo.MaindiagFlag = strconv.Itoa(index)
1825
-			tempOpspdiseinfo.OprnOprtCode = ""
1826
-			tempOpspdiseinfo.OprnOprtName = ""
1827
-			tempOpspdiseinfos = append(tempOpspdiseinfos, tempOpspdiseinfo)
1828
-		}
1821
+			if index == 0 {
1822
+				var tempDiaginfo service.DiaginfoStructTwo
1823
+				tempDiaginfo.DiagCode = item.CountryCode
1824
+				tempDiaginfo.DiagName = item.CountryContentName
1825
+				tempDiaginfo.DiagType = "1"
1826
+				tempDiaginfo.MaindiagFlag = "1"
1827
+				tempDiaginfos = append(tempDiaginfos, tempDiaginfo)
1828
+			} else {
1829 1829
 
1830
+				var tempDiaginfo service.DiaginfoStructTwo
1831
+				tempDiaginfo.DiagCode = item.CountryCode
1832
+				tempDiaginfo.DiagName = item.CountryContentName
1833
+				tempDiaginfo.DiagType = "2"
1834
+				tempDiaginfo.MaindiagFlag = "0"
1835
+				tempDiaginfos = append(tempDiaginfos, tempDiaginfo)
1836
+			}
1837
+		}
1830 1838
 		sickConfigTwo, _ := service.FindSickById(his.SickType)
1831 1839
 		tempOpspdiseinfo2.DiagCode = sickConfigTwo.ContentCode
1832 1840
 		tempOpspdiseinfo2.DiagName = sickConfigTwo.CountryContentName
1833
-		tempOpspdiseinfo2.MaindiagFlag = "1"
1834 1841
 		tempOpspdiseinfo2.OprnOprtCode = ""
1835 1842
 		tempOpspdiseinfo2.OprnOprtName = ""
1836 1843
 		tempOpspdiseinfos = append(tempOpspdiseinfos, tempOpspdiseinfo2)

+ 21 - 17
service/gdyb_service.go View File

@@ -2774,6 +2774,12 @@ type OpspdiseinfoStruct struct {
2774 2774
 	DiagCode     string
2775 2775
 	OprnOprtName string
2776 2776
 	OprnOprtCode string
2777
+}
2778
+
2779
+type DiaginfoStructTwo struct {
2780
+	DiagType     string
2781
+	DiagCode     string
2782
+	DiagName     string
2777 2783
 	MaindiagFlag string
2778 2784
 }
2779 2785
 
@@ -2826,9 +2832,11 @@ type Struct4101 struct {
2826 2832
 	Age                int64
2827 2833
 	CustomStruct       []CustomStruct
2828 2834
 	OpspdiseinfoStruct []OpspdiseinfoStruct
2829
-	IteminfoStruct     []IteminfoStruct
2830
-	AdmTime            string
2831
-	AdmEndTime         string
2835
+	Diseinfo           []DiaginfoStructTwo
2836
+
2837
+	IteminfoStruct []IteminfoStruct
2838
+	AdmTime        string
2839
+	AdmEndTime     string
2832 2840
 }
2833 2841
 
2834 2842
 //
@@ -2955,19 +2963,17 @@ func Gdyb4101(struct4101 Struct4101, secret_key string, org_name string, doctor
2955 2963
 	opspdiseinfo = append(opspdiseinfo, opspdiseinfotemp)
2956 2964
 
2957 2965
 	diseinfo := make([]map[string]interface{}, 0) // 住院诊断信息
2958
-	for index, item := range struct4101.OpspdiseinfoStruct {
2959
-		if index != (len(struct4101.OpspdiseinfoStruct) - 1) {
2960
-			diseinfotemp := make(map[string]interface{})
2961
-			diseinfotemp["maindiag_flag"] = item.MaindiagFlag // 手术操作代码 必填
2962
-			diseinfotemp["diag_type"] = item.MaindiagFlag     // 诊断类别  必填
2963
-			diseinfotemp["diag_code"] = item.DiagCode         // 诊断代码 必填
2964
-			diseinfotemp["diag_name"] = item.DiagName         // 诊断名称 必填
2965
-			diseinfotemp["adm_cond_type"] = "3"               // 入院病情类型 必填
2966
-			diseinfo = append(diseinfo, diseinfotemp)
2967
-		}
2966
+	for _, item := range struct4101.Diseinfo {
2967
+		diseinfotemp := make(map[string]interface{})
2968
+		diseinfotemp["maindiag_flag"] = item.MaindiagFlag // 手术操作代码 必填
2969
+		diseinfotemp["diag_type"] = item.DiagType         // 诊断类别  必填
2970
+		diseinfotemp["diag_code"] = item.DiagCode         // 诊断代码 必填
2971
+		diseinfotemp["diag_name"] = item.DiagName         // 诊断名称 必填
2972
+		diseinfotemp["adm_cond_type"] = "3"               // 入院病情类型 必填
2973
+		diseinfo = append(diseinfo, diseinfotemp)
2968 2974
 	}
2969 2975
 
2970
-	iteminfo := make([]map[string]interface{}, 0) // 住院诊断信息
2976
+	iteminfo := make([]map[string]interface{}, 0)
2971 2977
 	for _, item := range struct4101.IteminfoStruct {
2972 2978
 		iteminfotemp := make(map[string]interface{})
2973 2979
 		iteminfotemp["med_chrgitm"] = item.MedChrgitm            // 医疗收费项目  必填
@@ -3002,11 +3008,9 @@ func Gdyb4101(struct4101 Struct4101, secret_key string, org_name string, doctor
3002 3008
 
3003 3009
 	input["setlinfo"] = inputData
3004 3010
 	input["payinfo"] = payinfo
3005
-	//input["opspdiseinfo"] = opspdiseinfo
3011
+	input["opspdiseinfo"] = opspdiseinfo
3006 3012
 	input["diseinfo"] = diseinfo
3007 3013
 	input["iteminfo"] = iteminfo
3008
-	//input["oprninfo"] = oprninfo
3009
-	//input["icuinfo"] = icuinfo
3010 3014
 	inputMessage["input"] = input //交易输入
3011 3015
 
3012 3016
 	bytesData, err := json.Marshal(inputMessage)