Commit f5e9eaa3 authored by 黄媛媛's avatar 黄媛媛

酒店折让

parent fc754f5a
......@@ -92,10 +92,10 @@
<td>{{item.StartDate}}</td>
<td>{{item.NewHotelName}}</td>
<td>{{item.Days}}</td>
<td>{{item.SinleRoomNum}}</td>
<td>{{item.DoubleRoom}}</td>
<td>{{item.KingRoom}}</td>
<td>{{item.TripleRoom}}</td>
<td>{{item.SinleRoomNum}}{{item.SinleRoomPeopleNum}}</td>
<td>{{item.DoubleRoom}}{{item.DoublePeopleRoom}}</td>
<td>{{item.KingRoom}}{{item.KingPeopleRoom}}</td>
<td>{{item.TripleRoom}}{{item.TriplePeopleRoom}}</td>
<td>
<span v-if="item.FinanceId==0"></span>
<span @click="goFncUrl('FinancialDocumentsDetail', item.FinanceId)" style="cursor: pointer;text-decoration: underline;" v-else>{{item.FinanceId}}</span>
......@@ -119,14 +119,18 @@
<tr>
<th>团号</th>
<th>酒店名称</th>
<th>关联财务单据</th>
<th>财务单据金额</th>
<th>单间数量</th>
<th>双人间数量</th>
<th>大床房数量</th>
<th>三人间数量</th>
</tr>
<tr v-for="(item,index) in addMsg.AirServiceList" :key="index">
<td>{{item.TCNUM}}</td>
<td>{{item.NewHotelName}}</td>
<td>{{item.FinanceId==0?'':item.FinanceId}}</td>
<td>{{item.FinanceMoney==0?'':item.FinanceMoney}}</td>
<td>{{item.SinleRoomNum}}{{item.SinleRoomPeopleNum}}</td>
<td>{{item.DoubleRoom}}{{item.DoublePeopleRoom}}</td>
<td>{{item.KingRoom}}{{item.KingPeopleRoom}}</td>
<td>{{item.TripleRoom}}{{item.TriplePeopleRoom}}</td>
</tr>
<tr v-if="addMsg.AirServiceList.length==0">
<td colspan="5">暂无数据</td>
......@@ -157,11 +161,16 @@
</el-date-picker>
</el-form-item>
</div>
<div style="margin-bottom:16px;margin-left:14px">
收款账户 <span style="padding-left:10px">日本地接部专户(人民币)</span>
<div>
<el-form-item label="收款账户" prop="AccountId">
<el-select style="width:201px" v-model="addMsg.AccountId" :placeholder="$t('pub.pleaseSel')" filterable>
<el-option label="日本地接部专户" :value="14"></el-option>
<el-option label="日本地接部专户(人民币)" :value="19"></el-option>
</el-select>
</el-form-item>
</div>
<el-form-item label="折让金额" prop="Money">
<el-input v-model="addMsg.Money" @keyup.native="checkInteger(addMsg,'Money')" placeholder="单折让金额"></el-input>
<el-input v-model="addMsg.Money" @keyup.native="checkInteger(addMsg,'Money')" placeholder="单折让金额"></el-input>
</el-form-item>
<el-form-item label="汇款人" prop="RemitterName">
<el-input v-model="addMsg.RemitterName" ></el-input>
......@@ -238,6 +247,7 @@ export default {
Money:'',
RemitterName:'',
TradeDate:'',
AccountId:14,
},
rules:{
Money: [
......@@ -249,6 +259,9 @@ export default {
TradeDate: [
{ type: 'string', required: true, message: '请选择时间', trigger: 'change' }
],
AccountId:[
{ required: true, message: '请选择', trigger: 'change' }
]
},
Btnloading:false,
Ticketform:{},
......@@ -308,6 +321,7 @@ export default {
Money:'',
RemitterName:'',
TradeDate:'',
AccountId:14,
}
},
ChooseTeamMake(){
......
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