Explorar el Código

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

csx hace 3 años
padre
commit
860ca28a6f
Se han modificado 1 ficheros con 27 adiciones y 2 borrados
  1. 27 2
      service/gdyb_service.go

+ 27 - 2
service/gdyb_service.go Ver fichero

@@ -1103,7 +1103,20 @@ func Gdyb2206(psnNo string, mdtrtId string, chrgBchno string, certNo string, ins
1103 1103
 			inputData["mdtrt_cert_no"] = certNo // 就诊凭证编号
1104 1104
 		}
1105 1105
 	}
1106
-	inputData["med_type"] = med_type    // 医疗类别 11 普通门诊  12 门诊挂号
1106
+	if insuplc_admdvs == "421300" {
1107
+		if med_type == "11" {
1108
+			inputData["med_type"] = "110104" // 医疗类别 11 普通门诊  12 门诊挂号
1109
+
1110
+		} else {
1111
+
1112
+			inputData["med_type"] = med_type // 医疗类别 11 普通门诊  12 门诊挂号
1113
+		}
1114
+
1115
+	} else {
1116
+		inputData["med_type"] = med_type // 医疗类别 11 普通门诊  12 门诊挂号
1117
+
1118
+	}
1119
+
1107 1120
 	inputData["medfee_sumamt"] = total  // 医疗费总额
1108 1121
 	inputData["psn_setlway"] = "01"     // 个人结算方式 01 按项目结 02 按定额结算
1109 1122
 	inputData["mdtrt_id"] = mdtrtId     // 就诊 ID(来自2201接口返回)
@@ -1206,7 +1219,19 @@ func Gdyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, ins
1206 1219
 		}
1207 1220
 	}
1208 1221
 
1209
-	inputData["med_type"] = med_type    // 医疗类别 11 普通门诊  12 门诊挂号
1222
+	if insuplc_admdvs == "421300" {
1223
+		if med_type == "11" {
1224
+			inputData["med_type"] = "110104" // 医疗类别 11 普通门诊  12 门诊挂号
1225
+
1226
+		} else {
1227
+
1228
+			inputData["med_type"] = med_type // 医疗类别 11 普通门诊  12 门诊挂号
1229
+		}
1230
+
1231
+	} else {
1232
+		inputData["med_type"] = med_type // 医疗类别 11 普通门诊  12 门诊挂号
1233
+
1234
+	}
1210 1235
 	inputData["medfee_sumamt"] = total  // 医疗费总额
1211 1236
 	inputData["psn_setlway"] = "01"     // 个人结算方式 01 按项目结 02 按定额结算
1212 1237
 	inputData["mdtrt_id"] = mdtrtId     // 就诊 ID(来自2201接口返回)