|
@@ -40,16 +40,18 @@ func Gdyb1101(certNo string, org_name string, doctor string, fixmedins_code stri
|
40
|
40
|
if id_card_type == 1 {
|
41
|
41
|
inputData["mdtrt_cert_type"] = "03" // 就诊凭证类型
|
42
|
42
|
inputData["card_sn"] = card_sn // 卡识别码
|
|
43
|
+ inputData["certno"] = "" // 证件号码
|
43
|
44
|
inputData["psn_cert_type"] = "90" // 人员证件类型
|
44
|
45
|
|
45
|
46
|
} else {
|
46
|
47
|
inputData["mdtrt_cert_type"] = "02" // 就诊凭证类型
|
47
|
48
|
inputData["card_sn"] = "" // 卡识别码
|
48
|
|
- inputData["psn_cert_type"] = "1" // 人员证件类型
|
|
49
|
+ inputData["certno"] = certNo // 证件号码
|
|
50
|
+
|
|
51
|
+ inputData["psn_cert_type"] = "1" // 人员证件类型
|
49
|
52
|
}
|
50
|
53
|
|
51
|
54
|
inputData["mdtrt_cert_no"] = certNo // 就诊凭证编号
|
52
|
|
- inputData["certno"] = certNo // 证件号码
|
53
|
55
|
inputData["begntime"] = "" // 开始时间
|
54
|
56
|
inputData["psn_name"] = "" // 人员姓名
|
55
|
57
|
input["data"] = inputData
|