|
@@ -359,6 +359,8 @@ type Struct2402 struct {
|
359
|
359
|
DscgDeptName string
|
360
|
360
|
DscgWay string
|
361
|
361
|
Diseinfo []Diseinfo2402Struct
|
|
362
|
+ DiseName string
|
|
363
|
+ DiseCode string
|
362
|
364
|
}
|
363
|
365
|
|
364
|
366
|
// 出院
|
|
@@ -375,17 +377,17 @@ func ZHGdyb2402(struct2402 Struct2402, org_name string, doctor string, insuplc_a
|
375
|
377
|
inputMessage := SetInputMessage(nonce, timestamp, org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs)
|
376
|
378
|
input := make(map[string]interface{})
|
377
|
379
|
inputData := make(map[string]interface{})
|
378
|
|
- inputMessage["infno"] = "2402" // 交易编码
|
379
|
|
- inputData["mdtrt_id"] = struct2402.MdtrtId // 人员编号 (来自1101接口返回)
|
380
|
|
- inputData["psn_no"] = struct2402.PsnNo // 人员编号 (来自1101接口返回)
|
381
|
|
- inputData["insutype"] = struct2402.Insutype // 险种类型(来自1101接口返回)
|
382
|
|
- inputData["endtime"] = struct2402.Endtime // 结束时间
|
383
|
|
- inputData["dise_codg"] = "" // 就诊凭证类型
|
384
|
|
-
|
385
|
|
- inputData["dise_name"] = "" // 就诊凭证类型
|
386
|
|
- inputData["oprn_oprt_code"] = "" // 就诊凭证类型
|
387
|
|
- inputData["oprn_oprt_name"] = "" // 就诊凭证类型
|
388
|
|
- inputData["fpsc_no"] = "" // 就诊凭证类型
|
|
380
|
+ inputMessage["infno"] = "2402" // 交易编码
|
|
381
|
+ inputData["mdtrt_id"] = struct2402.MdtrtId // 人员编号 (来自1101接口返回)
|
|
382
|
+ inputData["psn_no"] = struct2402.PsnNo // 人员编号 (来自1101接口返回)
|
|
383
|
+ inputData["insutype"] = struct2402.Insutype // 险种类型(来自1101接口返回)
|
|
384
|
+ inputData["endtime"] = struct2402.Endtime // 结束时间
|
|
385
|
+ inputData["dise_codg"] = struct2402.DiseCode // 就诊凭证类型
|
|
386
|
+
|
|
387
|
+ inputData["dise_name"] = struct2402.DiseName // 就诊凭证类型
|
|
388
|
+ inputData["oprn_oprt_code"] = "" // 就诊凭证类型
|
|
389
|
+ inputData["oprn_oprt_name"] = "" // 就诊凭证类型
|
|
390
|
+ inputData["fpsc_no"] = "" // 就诊凭证类型
|
389
|
391
|
|
390
|
392
|
inputData["matn_type"] = "" // 就诊凭证类型
|
391
|
393
|
inputData["birctrl_type"] = "" // 就诊凭证类型
|
|
@@ -399,7 +401,7 @@ func ZHGdyb2402(struct2402 Struct2402, org_name string, doctor string, insuplc_a
|
399
|
401
|
|
400
|
402
|
inputData["dscg_dept_codg"] = struct2402.DscgDeptCodg
|
401
|
403
|
inputData["dscg_dept_name"] = struct2402.DscgDeptName
|
402
|
|
- inputData["dscg_bed"] = ""
|
|
404
|
+ inputData["dscg_bed"] = "待定"
|
403
|
405
|
inputData["dscg_way"] = struct2402.DscgWay
|
404
|
406
|
inputData["die_date"] = ""
|
405
|
407
|
|