Commit 50887120 authored by 任鸿志's avatar 任鸿志

feat(outpatientCharging): 添加生育保险结算功能

- 在结算页面添加生育保险选项
- 在支付数据中增加生育保险相关字段
- 调整结算预览和正式结算时传递生育保险参数
parent 3bb7631d
......@@ -12,6 +12,7 @@ VUE_APP_BASE_API = ''
VUE_APP_BASE_URL_change = 'http://10.10.8.230:6200/fancy'
# VUE_APP_BASE_URL = 'http://127.0.0.1:9902'
VUE_APP_BASE_URL = 'http://10.10.9.219:9902'
VUE_APP_BASE_URL = 'http://10.10.9.219:9902'
VUE_APP_BASE_URL_SFC = 'http://10.10.9.219:8802'
# VUE_APP_BASE_URL_SFC = 'http://127.0.0.1:9902'
# VUE_APP_BASE_URL = 'http://192.169.4.171:8002'
......
......@@ -33,6 +33,7 @@
<div style="display: flex">
<el-checkbox v-model="gz_name" style="margin-right: 10px">转为个账账单</el-checkbox>
<el-checkbox v-model="man_name">转为自费账单</el-checkbox>
<el-checkbox v-model="is_sy">生育</el-checkbox>
<!-- <el-checkbox v-model="insurance_payment">智慧医保支付</el-checkbox> -->
</div>
<!-- <div style="display: flex" v-if="patientInfo.yblx != '01'">
......@@ -635,6 +636,7 @@ export default {
name: 'Outpatient',
data() {
return {
is_sy:false,
saveLoding: false,
invoicepostData: {},
invoicepostVisible: false,
......@@ -1676,6 +1678,7 @@ export default {
//调取待结算清单
getWaiting(e) {
var that = this
this.is_sy = false
this.gz_name = false
var obj = {
channel: this.channel,
......@@ -2028,6 +2031,7 @@ export default {
}, 1000)
this.sureshow = true
let y = {
sy: this.is_sy,
source_type: this.payData.targetSys,
source_trade_no: this.payData.tradeNo,
is_gz: this.gz_name,
......@@ -2389,6 +2393,7 @@ export default {
this.form = data
this.form.rqlbName = data.rqlb == 'A' ? '职工' : data.rqlb == 'B' ? '居民' : ''
settlementPre({
sy: this.is_sy,
channel: this.channel,
is_gz: this.gz_name,
injury_date: this.GSdatatime,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment