Commit 4b63779d authored by youjie's avatar youjie

no message

parent 82ea94ea
...@@ -872,7 +872,6 @@ export default { ...@@ -872,7 +872,6 @@ export default {
id: obj.Id, id: obj.Id,
branchId: obj.RB_Branch_Id, branchId: obj.RB_Branch_Id,
blank: "y", blank: "y",
TrafficToll: obj.TrafficToll?obj.TrafficToll:0,
tab: "结算列表" tab: "结算列表"
} }
}); });
......
...@@ -866,8 +866,11 @@ ...@@ -866,8 +866,11 @@
<span>实收:{{moneyFormat(IncomePrice)}}</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span>实收:{{moneyFormat(IncomePrice)}}</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<span>优惠:{{moneyFormat(DiscountMoneyAll)}}</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span>优惠:{{moneyFormat(DiscountMoneyAll)}}</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<span>待收:<span <span>待收:<span
:class="{color_red:(PreferPrice-IncomePrice-DiscountMoneyAll)!==0}">{{moneyFormat(PreferPrice-IncomePrice-DiscountMoneyAll)}}</span></span> :class="{color_red:(PreferPrice-IncomePrice-DiscountMoneyAll)!==0}">
</div> {{moneyFormat(PreferPrice-IncomePrice-DiscountMoneyAll)}}</span>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
<span>成本:{{moneyFormat(CostMoney)}}</span>
</div>
<table class="VisaProductTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'> <table class="VisaProductTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'>
<tr> <tr>
<th width="11%">单号</th> <th width="11%">单号</th>
...@@ -1137,6 +1140,7 @@ ...@@ -1137,6 +1140,7 @@
isShow: 0, isShow: 0,
PreferPrice: 0, PreferPrice: 0,
IncomePrice: 0, IncomePrice: 0,
CostMoney: 0,
DiscountMoneyAll: 0, DiscountMoneyAll: 0,
EmployeeId: 0, EmployeeId: 0,
EditVisible: false, EditVisible: false,
...@@ -1291,6 +1295,7 @@ ...@@ -1291,6 +1295,7 @@
this.apipost('dmc_get_visa_GetVisaOrderList', this.msg, res => { this.apipost('dmc_get_visa_GetVisaOrderList', this.msg, res => {
this.PreferPrice = 0; this.PreferPrice = 0;
this.IncomePrice = 0; this.IncomePrice = 0;
this.CostMoney = 0;
this.DiscountMoneyAll = 0; this.DiscountMoneyAll = 0;
if (res.data.resultCode == 0) { if (res.data.resultCode == 0) {
this.loading = false; this.loading = false;
...@@ -1304,6 +1309,7 @@ ...@@ -1304,6 +1309,7 @@
this.PreferPrice += x.TotalPrice; this.PreferPrice += x.TotalPrice;
this.DiscountMoneyAll += x.DiscountMoney; this.DiscountMoneyAll += x.DiscountMoney;
this.IncomePrice += (x.Income + x.PlatformTax - x.RefundMoney); this.IncomePrice += (x.Income + x.PlatformTax - x.RefundMoney);
this.CostMoney += x.CostMoney;
} }
}) })
} }
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<div class="fl meta mg0"> <div class="fl meta mg0">
成本 成本
</div> </div>
<input v-if="$route.query.TrafficToll>0||seeDes" type="button" <input v-if="TrafficToll>0||seeDes" type="button"
class="normalBtn fr" value="新增车费成本" @click="goUrl()"/> class="normalBtn fr" value="新增车费成本" @click="goUrl()"/>
</div> </div>
<table class="saleOrderSettlementTable" border="0" cellspacing="0" cellpadding="0"> <table class="saleOrderSettlementTable" border="0" cellspacing="0" cellpadding="0">
...@@ -184,7 +184,8 @@ ...@@ -184,7 +184,8 @@
:page-size="this.CollectMsg.pageSize" :page-size="this.CollectMsg.pageSize"
:total="total1"> :total="total1">
</el-pagination> </el-pagination>
<div style="margin: 20px 0; overflow: hidden;"> <!--
<div style="margin: 20px 0; overflow: hidden;">
<div class="fl meta mg0"> <div class="fl meta mg0">
提成核算 提成核算
</div> </div>
...@@ -208,7 +209,7 @@ ...@@ -208,7 +209,7 @@
暂无提成发放 暂无提成发放
</td> </td>
</tr> </tr>
</table> </table> -->
</div> </div>
</template> </template>
...@@ -216,6 +217,7 @@ ...@@ -216,6 +217,7 @@
export default { export default {
data(){ data(){
return{ return{
TrafficToll: 0,//交通费用
isDisabled: true, isDisabled: true,
OrderIds:[], OrderIds:[],
total: 0, total: 0,
...@@ -248,6 +250,23 @@ ...@@ -248,6 +250,23 @@
} }
}, },
methods:{ methods:{
// 请求签证产品详情
GetVisaProductDetails(){
this.apipost(
"dmc_get_visa_GetVisaProductInfo_V1",
{Pid:this.PayMsg.TCID},
res => {
if (res.data.resultCode == 1) {
let data=res.data.data;
this.TrafficToll = res.data.data.TrafficToll
} else {
this.Error(res.data.message);
}
},
err => {}
);
},
goUrlUpdatePay(obj,type){ //付款单 goUrlUpdatePay(obj,type){ //付款单
this.$router.push( this.$router.push(
{ {
...@@ -372,6 +391,7 @@ ...@@ -372,6 +391,7 @@
this.getPayList() this.getPayList()
this.getTicheng() this.getTicheng()
this.getCollectList() this.getCollectList()
this.GetVisaProductDetails()
} }
} }
</script> </script>
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