Commit 9e17a147 authored by youjie's avatar youjie

no message

parent 4ba69006
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
color: aqua; color: aqua;
} }
</style> </style>
<template> <template>
<div class="m_TicketingModule"> <div class="m_TicketingModule">
<div v-if="OtherType==7||OtherType==65||details.MatchFrId>0"> <div v-if="OtherType==7||OtherType==65||details.MatchFrId>0">
<div class="_tit"> <div class="_tit">
...@@ -64,8 +64,15 @@ ...@@ -64,8 +64,15 @@
</div> </div>
</div> </div>
<div v-show="tableShow1" class="sanjiao-box _padding_20_15"> <div v-show="tableShow1" class="sanjiao-box _padding_20_15">
<div v-if="IsFinancePermission"> <div v-if="IsFinancePermission" style="margin-bottom: 5px;">
<span class="cd_btn" @click="sureAccount()">对账确认 &nbsp;&nbsp;</span> <span class="cd_btn" @click="sureAccount()">对账确认 &nbsp;&nbsp;</span>
<span style="color: red;">
*
</span>
<el-date-picker format="yyyy-MM" value-format="yyyy-MM"
clearable class="w190 _border_b_1" v-model="Area_Name" type="datetime"
:placeholder="$t('pub.date')" align="right">
</el-date-picker>
<!-- <span class="cd_btn" @click="advanceToExcel()">导出Excel</span> --> <!-- <span class="cd_btn" @click="advanceToExcel()">导出Excel</span> -->
</div> </div>
<table border="1" class="czBillModule _border_color_b Receipt_table" bordercolor="#c94052" style="border-collapse:collapse;width: 100%;" v-loading='loading'> <table border="1" class="czBillModule _border_color_b Receipt_table" bordercolor="#c94052" style="border-collapse:collapse;width: 100%;" v-loading='loading'>
...@@ -95,10 +102,10 @@ ...@@ -95,10 +102,10 @@
</td> </td>
<td> <td>
{{item.Money}} {{item.Money}}
<span v-if="item.OtherType&&item.OtherType==65" <span v-if="item.OtherType&&item.OtherType==65"
style="font-size: 12px;margin-left: 3px;color: #FF9600;">(退)</span> style="font-size: 12px;margin-left: 3px;color: #FF9600;">(退)</span>
</td> </td>
</tr> </tr>
<tr class="_color_b"> <tr class="_color_b">
<td colspan="4">原币合计</td> <td colspan="4">原币合计</td>
...@@ -128,7 +135,7 @@ ...@@ -128,7 +135,7 @@
<th>本位币</th> <th>本位币</th>
<th>备注</th> <th>备注</th>
<th>制单人</th> <th>制单人</th>
</tr> </tr>
<tr class="_color_b" v-for="(item,index) in LeaderRefundDetailList" :key="index"> <tr class="_color_b" v-for="(item,index) in LeaderRefundDetailList" :key="index">
<td class="hover_text" @click="goDetail(item.FinanceId)" ><span>{{item.FinanceId}}</span></td> <td class="hover_text" @click="goDetail(item.FinanceId)" ><span>{{item.FinanceId}}</span></td>
...@@ -139,7 +146,7 @@ ...@@ -139,7 +146,7 @@
<td>{{item.Money}}</td> <td>{{item.Money}}</td>
<td>{{item.Remark}}</td> <td>{{item.Remark}}</td>
<td>{{item.EmName}}</td> <td>{{item.EmName}}</td>
</tr> </tr>
</table> </table>
</div> </div>
...@@ -159,14 +166,14 @@ ...@@ -159,14 +166,14 @@
<th>团号</th> <th>团号</th>
<th>账户</th> <th>账户</th>
<th>原币</th> <th>原币</th>
</tr> </tr>
<tr class="_color_b"> <tr class="_color_b">
<td class="hover_text" @click="goDetailDoc(ReceiptModel.Id)" ><span>{{ReceiptModel.Id}}</span></td> <td class="hover_text" @click="goDetailDoc(ReceiptModel.Id)" ><span>{{ReceiptModel.Id}}</span></td>
<td><span>{{ReceiptModel.TCNUM}}{{ReceiptModel.TCID}}</span></td> <td><span>{{ReceiptModel.TCNUM}}{{ReceiptModel.TCID}}</span></td>
<td>{{ReceiptModel.AccountName}}</td> <td>{{ReceiptModel.AccountName}}</td>
<td>{{ReceiptModel.WBMoney}}</td> <td>{{ReceiptModel.WBMoney}}</td>
</tr> </tr>
</table> </table>
</div> </div>
...@@ -185,7 +192,7 @@ ...@@ -185,7 +192,7 @@
<tr> <tr>
<th width="35%">编号</th> <th width="35%">编号</th>
<th>名称</th> <th>名称</th>
</tr> </tr>
<tr class="_color_b"> <tr class="_color_b">
<td class="hover_text" @click="goElectricityGoods(ECommerceGoodsModel.Id)" ><span>{{ECommerceGoodsModel.Id}}</span></td> <td class="hover_text" @click="goElectricityGoods(ECommerceGoodsModel.Id)" ><span>{{ECommerceGoodsModel.Id}}</span></td>
...@@ -210,7 +217,7 @@ ...@@ -210,7 +217,7 @@
<tr> <tr>
<th width='35%'>团ID</th> <th width='35%'>团ID</th>
<th>团号</th> <th>团号</th>
</tr> </tr>
<tr class="_color_b"> <tr class="_color_b">
<td class="hover_text" @click="goTravelControlList(details.TCID)" ><span>{{details.TCID}}</span></td> <td class="hover_text" @click="goTravelControlList(details.TCID)" ><span>{{details.TCID}}</span></td>
...@@ -250,13 +257,14 @@ export default { ...@@ -250,13 +257,14 @@ export default {
ECommerceGoodsModel:{}, ECommerceGoodsModel:{},
ReceiptModel:{}, ReceiptModel:{},
IsFinancePermission:false, IsFinancePermission:false,
Area_Name: '',
} }
},watch:{ },watch:{
},created(){ },created(){
},mounted(){ },mounted(){
this.getDataDes(); this.getDataDes();
// 查询财务权限 // 查询财务权限
...@@ -280,7 +288,9 @@ export default { ...@@ -280,7 +288,9 @@ export default {
this.$message.error("请选择财务单据!") this.$message.error("请选择财务单据!")
return return
} }
this.apipost("Financial_post_SetAdvanceMatchChecked", {FinanceIds: financeIds}, res => { this.apipost("Financial_post_SetAdvanceMatchChecked", {
FinanceIds: financeIds,
Area_Name: this.Area_Name}, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.$message.success(res.data.message); this.$message.success(res.data.message);
this.getczTableList(); this.getczTableList();
...@@ -319,7 +329,7 @@ export default { ...@@ -319,7 +329,7 @@ export default {
} }
} }
}, err => {}) }, err => {})
}, },
goTravelControlList(id){ goTravelControlList(id){
this.$router.push({ name: 'TravelControlList',query:{"TCID":id,blank:'y',tab:'团控列表'} }) this.$router.push({ name: 'TravelControlList',query:{"TCID":id,blank:'y',tab:'团控列表'} })
...@@ -354,7 +364,7 @@ export default { ...@@ -354,7 +364,7 @@ export default {
this.cdtotal+=item.Money; this.cdtotal+=item.Money;
this.ybtotal+=(item.WBMoney) this.ybtotal+=(item.WBMoney)
} }
}); });
this.cdtotal=this.cdtotal.toFixed(2); this.cdtotal=this.cdtotal.toFixed(2);
this.ybtotal=this.ybtotal.toFixed(2); this.ybtotal=this.ybtotal.toFixed(2);
...@@ -374,7 +384,7 @@ export default { ...@@ -374,7 +384,7 @@ export default {
}; };
this.cdtotal=0; this.cdtotal=0;
this.apipost('Financial_get_GetAdvanceFinancePageList', msg, res => { this.apipost('Financial_get_GetAdvanceFinancePageList', msg, res => {
this.loading = false this.loading = false
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let data=res.data.data.pageData; let data=res.data.data.pageData;
...@@ -396,11 +406,11 @@ export default { ...@@ -396,11 +406,11 @@ export default {
sTradeDate:'', sTradeDate:'',
eTradeDate:'', eTradeDate:'',
}; };
this.apipost('Financial_get_GetAdvanceFinancePageList', msg, res=>{ this.apipost('Financial_get_GetAdvanceFinancePageList', msg, res=>{
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
this.loading = false this.loading = false
let data= res.data.data.pageData; let data= res.data.data.pageData;
this.czList = data; this.czList = data;
} }
}, null) }, null)
......
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