Commit e95ee5d5 authored by youjie's avatar youjie

no message

parent 4fa75ef3
...@@ -224,6 +224,9 @@ ...@@ -224,6 +224,9 @@
<span style="margin-left: 15px;">已制单总金额: <span style="margin-left: 15px;">已制单总金额:
{{totalBW.toFixed(2)}} {{totalBW.toFixed(2)}}
</span> </span>
<span style="margin-left: 15px;">原币总金额:
{{totalYB.toFixed(2)}}
</span>
</div> </div>
<div class="_fnDm_content" v-loading='loading'> <div class="_fnDm_content" v-loading='loading'>
<el-table <el-table
...@@ -460,6 +463,7 @@ export default { ...@@ -460,6 +463,7 @@ export default {
LogLoading:false, LogLoading:false,
currentPage:1, currentPage:1,
total:0, total:0,
totalYB:0,
totalBW:0, totalBW:0,
totalBW2:0, totalBW2:0,
totalZD:0, totalZD:0,
...@@ -655,11 +659,12 @@ export default { ...@@ -655,11 +659,12 @@ export default {
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
let data = res.data.data let data = res.data.data
this.total = 0; this.total = 0;
this.totalYB = 0
this.totalBW = 0 this.totalBW = 0
this.totalBW2 = 0 this.totalBW2 = 0
this.DataList = data; this.DataList = data;
this.DataList.forEach(x=>{ this.DataList.forEach(x=>{
// this.total+=x.OriginalMoney this.totalYB+=x.OriginalMoney
if(x.HandFeeIncomeFrId){ if(x.HandFeeIncomeFrId){
this.totalBW+=x.Money this.totalBW+=x.Money
}else{ }else{
...@@ -675,7 +680,10 @@ export default { ...@@ -675,7 +680,10 @@ export default {
},err=>{}) },err=>{})
}, },
method5() { method5() {
this.GetLocalFile("Financial_post_GetFinanceHandFeeListToExcel", this.msg,"手配费用单据.xls"); let msg = JSON.parse(JSON.stringify(this.msg))
let userInfo = this.getLocalStorage();
msg.EmployeeId = userInfo.EmployeeId
this.GetLocalFile("Financial_post_GetFinanceHandFeeListToExcel", msg,"手配费用单据.xls");
} , } ,
FinancialFlowTemplate_post_GetStatusList(){ // 获取审核状态枚举 FinancialFlowTemplate_post_GetStatusList(){ // 获取审核状态枚举
this.apipost('FinancialFlowTemplate_post_GetStatusList',{}, res => { this.apipost('FinancialFlowTemplate_post_GetStatusList',{}, res => {
......
<template> <template>
<el-table border ref="multipleTable" :data="OrderList" style="width: 100%" <el-table border ref="multipleTable" :data="OrderList" style="width: 100%"
:default-sort="{prop: 'null', order: 'null'}" :default-sort="{prop: 'null', order: 'null'}"
:sort-by="['Money','Income','PreferTipAmount','PlatformTax','Refund','CostMoney','DueInMoney']"> :sort-by="['Money','Income','PreferTipAmount','PlatformTax','Refund','CostMoney','OrderProfit','DueInMoney']">
<el-table-column width="200" prop="CreateTimeStr" label="订单Id" show-overflow-tooltip> <el-table-column width="200" prop="CreateTimeStr" label="订单Id" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
...@@ -30,9 +30,9 @@ ...@@ -30,9 +30,9 @@
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="SaleName" label="销售" show-overflow-tooltip> <el-table-column prop="SaleName" label="销售">
</el-table-column> </el-table-column>
<el-table-column prop="LureEmpName" label="引流" show-overflow-tooltip> <el-table-column prop="LureEmpName" label="引流">
</el-table-column> </el-table-column>
<el-table-column label="商品名称" show-overflow-tooltip> <el-table-column label="商品名称" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
...@@ -44,27 +44,29 @@ ...@@ -44,27 +44,29 @@
<div style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</div> <div style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column sortable prop="Money" label="总金额" show-overflow-tooltip min-width="100"> <el-table-column sortable prop="Money" label="总金额" min-width="100" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.Money}}&ensp;({{scope.row.CurrencyName}}) {{scope.row.Money}}&ensp;({{scope.row.CurrencyName}})
</template> </template>
</el-table-column> </el-table-column>
<el-table-column sortable prop="Income" label="实收" show-overflow-tooltip> <el-table-column sortable prop="Income" label="实收">
</el-table-column> </el-table-column>
<el-table-column sortable prop="PreferTipAmount" label="人头小费" show-overflow-tooltip min-width="101"> <el-table-column sortable prop="PreferTipAmount" label="人头小费" min-width="101">
</el-table-column> </el-table-column>
<el-table-column sortable prop="PlatformTax" label="手续费" show-overflow-tooltip min-width="100"> <el-table-column sortable prop="PlatformTax" label="手续费" min-width="100">
</el-table-column> </el-table-column>
<el-table-column sortable prop="Refund" label="退款" show-overflow-tooltip> <el-table-column sortable prop="Refund" label="退款">
</el-table-column> </el-table-column>
<el-table-column sortable prop="CostMoney" label="成本" show-overflow-tooltip> <el-table-column sortable prop="CostMoney" label="成本" >
</el-table-column> </el-table-column>
<el-table-column sortable prop="DueInMoney" label="待收" show-overflow-tooltip> <el-table-column sortable prop="DueInMoney" label="待收">
<template slot-scope="scope"> <template slot-scope="scope">
<span :class="{'red':scope.row.DueInMoney>0}">{{scope.row.DueInMoney}}</span> <span :class="{'red':scope.row.DueInMoney>0}">{{scope.row.DueInMoney}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column sortable prop="DiscountsMoney" label="优惠" show-overflow-tooltip> <el-table-column sortable prop="OrderProfit" label="预期利润" min-width="100">
</el-table-column>
<el-table-column sortable prop="DiscountsMoney" label="优惠">
</el-table-column> </el-table-column>
<el-table-column prop="StateName" label="状态" show-overflow-tooltip> <el-table-column prop="StateName" label="状态" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
......
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