Commit 504e2d16 authored by 华国豪's avatar 华国豪 🙄

SalesFinancialDetail 统计计算问题

parent 62fcdb84
...@@ -373,9 +373,9 @@ export default { ...@@ -373,9 +373,9 @@ export default {
this.shiMoney = 0; this.shiMoney = 0;
data.forEach(x=>{ data.forEach(x=>{
this.allMoney += x.PreferPrice this.allMoney += x.PreferPrice
if(x.PayMoney>0){ // if(x.PayMoney>0){
this.shiMoney += (x.PayMoney+x.Fee) this.shiMoney += (x.PayMoney+x.Fee)
} // }
}) })
this.dataList = data; this.dataList = data;
this.getList(2) this.getList(2)
...@@ -384,9 +384,9 @@ export default { ...@@ -384,9 +384,9 @@ export default {
this.shiMoneyP = 0; this.shiMoneyP = 0;
data.forEach(x=>{ data.forEach(x=>{
this.allMoneyP += x.PreferPrice this.allMoneyP += x.PreferPrice
if(x.PayMoney>0){ // if(x.PayMoney>0){
this.shiMoneyP += (x.PayMoney+x.Fee) this.shiMoneyP += (x.PayMoney+x.Fee)
} // }
}) })
this.dataListP = data; this.dataListP = data;
this.loading = false; this.loading = false;
......
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