Commit a010cdd9 authored by youjie's avatar youjie

no message

parent 022db52d
...@@ -2647,13 +2647,14 @@ ...@@ -2647,13 +2647,14 @@
<!-- 开票费用 --> <!-- 开票费用 -->
<el-dialog width="1000px" title="开票费用" :visible.sync="BillingChargeDialog" center> <el-dialog width="1000px" title="开票费用" :visible.sync="BillingChargeDialog" center>
<el-form class="Rform" ref="form" :model="Ticketform" label-width="67px"> <el-form class="Rform" ref="form" :model="Ticketform" label-width="67px">
<div style="color: red;font-size: 13px;text-align: right;padding: 0 0 5px 0;">注:开票单价*开票人数+升舱增收=总开票金额</div>
<table class="po_content singeRowTable" style="border:1px solid #E6E6E6;margin-bottom:15px" cellspacing="0" <table class="po_content singeRowTable" style="border:1px solid #E6E6E6;margin-bottom:15px" cellspacing="0"
cellpadding="0" v-loading="loading"> cellpadding="0" v-loading="loading">
<tr> <tr>
<th>团号</th> <th>团号</th>
<th>开票人数</th> <th>开票人数</th>
<th>升舱增收</th>
<th>开票单价</th> <th>开票单价</th>
<th>升舱增收</th>
<th>总开票金额</th> <th>总开票金额</th>
</tr> </tr>
<tr v-for="(item,index) in MsgRAirServiceList" :key="index"> <tr v-for="(item,index) in MsgRAirServiceList" :key="index">
...@@ -2665,11 +2666,11 @@ ...@@ -2665,11 +2666,11 @@
@keyup.native="checkInteger(item,'GuestNum'),computeBillingCharge()"></el-input> @keyup.native="checkInteger(item,'GuestNum'),computeBillingCharge()"></el-input>
</td> </td>
<td> <td>
<el-input size="mini" style="width:150px" v-model="item.IncreaseIncome" @keyup.native="checkPrice(item,'IncreaseIncome')"> <el-input size="mini" style="width:150px" v-model="item.UnitPrice" @keyup.native="checkPrice(item,'UnitPrice'),computeBillingCharge()">
</el-input> </el-input>
</td> </td>
<td> <td>
<el-input size="mini" style="width:150px" v-model="item.UnitPrice" @keyup.native="checkPrice(item,'UnitPrice'),computeBillingCharge()"> <el-input size="mini" style="width:150px" v-model="item.IncreaseIncome" @keyup.native="checkPrice(item,'IncreaseIncome'),computeBillingCharge()">
</el-input> </el-input>
</td> </td>
<td> <td>
...@@ -3089,7 +3090,7 @@ ...@@ -3089,7 +3090,7 @@
}, },
computeBillingCharge(){ computeBillingCharge(){
this.MsgRAirServiceList.forEach(x=>{ this.MsgRAirServiceList.forEach(x=>{
x.TotalPrice=x.GuestNum*x.UnitPrice x.TotalPrice=(x.GuestNum*x.UnitPrice)+Number(x.IncreaseIncome)
}) })
}, },
SelectFinaceId(val, index) { SelectFinaceId(val, index) {
......
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