|
@@ -540,7 +540,7 @@ func Hbyb2206(psnNo string, mdtrtId string, chrgBchno string, certNo string, ins
|
540
|
540
|
}
|
541
|
541
|
|
542
|
542
|
// 门诊结算
|
543
|
|
-func Hbyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, insutype string, total string, org_name string, doctor string, fixmedins_code string, insuplc_admdvs string, mdtrtarea_admvs string, secret_key string, med_type string, id_card_type int64, fulamt_ownpay_amt float64, overlmt_selfpay float64, preselfpay_amt float64, inscp_scp_amt float64, certificates int64) (string, string) {
|
|
543
|
+func Hbyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, insutype string, total string, org_name string, doctor string, fixmedins_code string, insuplc_admdvs string, mdtrtarea_admvs string, secret_key string, med_type string, id_card_type int64, fulamt_ownpay_amt float64, overlmt_selfpay float64, preselfpay_amt float64, inscp_scp_amt float64, certificates int64, acct_used_flag int64) (string, string) {
|
544
|
544
|
// 生成签名
|
545
|
545
|
nonce := GetRandomString(32)
|
546
|
546
|
timestamp := time.Now().Unix()
|
|
@@ -572,13 +572,13 @@ func Hbyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, ins
|
572
|
572
|
} else {
|
573
|
573
|
inputData["med_type"] = med_type // 医疗类别 11 普通门诊 12 门诊挂号
|
574
|
574
|
}
|
575
|
|
- inputData["medfee_sumamt"] = total // 医疗费总额
|
576
|
|
- inputData["psn_setlway"] = "01" // 个人结算方式 01 按项目结 02 按定额结算
|
577
|
|
- inputData["mdtrt_id"] = mdtrtId // 就诊 ID(来自2201接口返回)
|
578
|
|
- inputData["chrg_bchno"] = chrgBchno // 收费批次号(来自2204生成的)
|
579
|
|
- inputData["acct_used_flag"] = "0" // 个人账户使用标志 0否 1是
|
580
|
|
- inputData["insutype"] = insutype // 险种类型
|
581
|
|
- inputData["invono"] = "" // 发票号
|
|
575
|
+ inputData["medfee_sumamt"] = total // 医疗费总额
|
|
576
|
+ inputData["psn_setlway"] = "01" // 个人结算方式 01 按项目结 02 按定额结算
|
|
577
|
+ inputData["mdtrt_id"] = mdtrtId // 就诊 ID(来自2201接口返回)
|
|
578
|
+ inputData["chrg_bchno"] = chrgBchno // 收费批次号(来自2204生成的)
|
|
579
|
+ inputData["acct_used_flag"] = acct_used_flag // 个人账户使用标志 0否 1是
|
|
580
|
+ inputData["insutype"] = insutype // 险种类型
|
|
581
|
+ inputData["invono"] = "" // 发票号
|
582
|
582
|
|
583
|
583
|
inputData["fulamt_ownpay_amt"] = fulamt_ownpay_amt //
|
584
|
584
|
inputData["overlmt_selfpay"] = overlmt_selfpay //
|