Commit 3cc12738 authored by youjie's avatar youjie

no message

parent 8a998dcc
...@@ -925,7 +925,7 @@ export default { ...@@ -925,7 +925,7 @@ export default {
this.coinGetList = res.data.data; this.coinGetList = res.data.data;
if(this.msg.RB_Branch_Id == -1){ if(this.msg.RB_Branch_Id == -1){
this.coinGetShow = false this.coinGetShow = false
this.msg.StandardCurrencyId = this.coinGetList[0].ID this.msg.StandardCurrencyId=this.$route.query.StandardCurrencyId?Number(this.$route.query.StandardCurrencyId):this.coinGetList[0].ID;
}else{ }else{
this.coinGetShow = true this.coinGetShow = true
this.msg.StandardCurrencyId = -1 this.msg.StandardCurrencyId = -1
......
...@@ -874,7 +874,7 @@ export default { ...@@ -874,7 +874,7 @@ export default {
this.$router.push({ name: path,query:{"startDate":startDate,"endDate":endDate,BranchId:BranchId,blank:'y',tab:tab} }) this.$router.push({ name: path,query:{"startDate":startDate,"endDate":endDate,BranchId:BranchId,blank:'y',tab:tab} })
}, },
GoUrlFan(path,month,year,BranchId, ids) { GoUrlFan(path,month,year,BranchId, ids,StandardCurrencyId) {
this.$router.push({ this.$router.push({
path: "/" + path, path: "/" + path,
query: { query: {
...@@ -882,6 +882,7 @@ export default { ...@@ -882,6 +882,7 @@ export default {
month:month, month:month,
BranchId:BranchId, BranchId:BranchId,
CostIds:ids, CostIds:ids,
StandardCurrencyId:StandardCurrencyId,
blank: "y" blank: "y"
} }
}); });
...@@ -905,7 +906,7 @@ export default { ...@@ -905,7 +906,7 @@ export default {
if(rowIndex<15){ if(rowIndex<15){
if(BranchId == 1245){ if(BranchId == 1245){
that.$router.push({ name: "TeamRevenueReport",query:{"StartTime":startDate,"EndTime":endDate,BranchId:BranchId,StandardCurrencyId,blank:'y',tab:"营收报表"} }) that.$router.push({ name: "TeamRevenueReport",query:{"StartTime":startDate,"EndTime":endDate,BranchId:BranchId,OutBranchId:BranchId,StandardCurrencyId,blank:'y',tab:"营收报表"} })
}else if(rowData.ZhaiYao=="联运收入"){ }else if(rowData.ZhaiYao=="联运收入"){
that.goUrl("CombinedRevenueReport",startDate,endDate,BranchId,"联运收入") that.goUrl("CombinedRevenueReport",startDate,endDate,BranchId,"联运收入")
} }
...@@ -917,7 +918,7 @@ export default { ...@@ -917,7 +918,7 @@ export default {
that.goUrl("RecPayQueryTeamV2",startDate,endDate,BranchId,"应付团款查询") that.goUrl("RecPayQueryTeamV2",startDate,endDate,BranchId,"应付团款查询")
} }
else{ else{
that.$router.push({ name: "TeamRevenueReport",query:{"StartTime":startDate,"EndTime":endDate,BranchId:BranchId,StandardCurrencyId,blank:'y',tab:"营收报表"} }) that.$router.push({ name: "TeamRevenueReport",query:{"StartTime":startDate,"EndTime":endDate,BranchId:BranchId,OutBranchId:BranchId,StandardCurrencyId,blank:'y',tab:"营收报表"} })
} }
}else{ }else{
if(rowData.ZhaiYao=="员工提成"){ if(rowData.ZhaiYao=="员工提成"){
...@@ -962,13 +963,13 @@ export default { ...@@ -962,13 +963,13 @@ export default {
month:month, month:month,
BranchId:rowData.BranchId, BranchId:rowData.BranchId,
CostIds:rowData.CostIds, CostIds:rowData.CostIds,
StandardCurrencyId, StandardCurrencyId:StandardCurrencyId,
"IsJapanNonbusinessIncome":1, "IsJapanNonbusinessIncome":1,
blank: "y" blank: "y"
} }
}); });
}else{ }else{
that.GoUrlFan('JumpReport',month,rowData.Year,rowData.BranchId,rowData.CostIds) that.GoUrlFan('JumpReport',month,rowData.Year,rowData.BranchId,rowData.CostIds,StandardCurrencyId)
} }
...@@ -990,7 +991,7 @@ export default { ...@@ -990,7 +991,7 @@ export default {
} }
} }
else{ else{
that.GoUrlFan('JumpReport',month,rowData.Year,rowData.BranchId,rowData.CostIds) that.GoUrlFan('JumpReport',month,rowData.Year,rowData.BranchId,rowData.CostIds,StandardCurrencyId)
} }
} }
......
...@@ -1853,7 +1853,6 @@ export default { ...@@ -1853,7 +1853,6 @@ export default {
this.msg.endDate=this.$route.query.EndTime!=undefined?this.$route.query.EndTime:''; this.msg.endDate=this.$route.query.EndTime!=undefined?this.$route.query.EndTime:'';
this.msg.LineId=this.$route.query.LineId!=undefined?Number(this.$route.query.LineId):''; this.msg.LineId=this.$route.query.LineId!=undefined?Number(this.$route.query.LineId):'';
this.msg.OutBranchId=this.$route.query.OutBranchId?Number(this.$route.query.OutBranchId):this.msg.OutBranchId; this.msg.OutBranchId=this.$route.query.OutBranchId?Number(this.$route.query.OutBranchId):this.msg.OutBranchId;
this.msg.StandardCurrencyId=this.$route.query.StandardCurrencyId
if(this.$route.query.LtIdStr){ if(this.$route.query.LtIdStr){
this.msg.LtIdStr=this.$route.query.LtIdStr this.msg.LtIdStr=this.$route.query.LtIdStr
} }
...@@ -1961,7 +1960,7 @@ export default { ...@@ -1961,7 +1960,7 @@ export default {
this.coinGetList = res.data.data; this.coinGetList = res.data.data;
if(this.msg.OutBranchId == -1){ if(this.msg.OutBranchId == -1){
this.coinGetShow = false this.coinGetShow = false
this.msg.StandardCurrencyId = this.coinGetList[0].ID this.msg.StandardCurrencyId=this.$route.query.StandardCurrencyId?Number(this.$route.query.StandardCurrencyId):this.coinGetList[0].ID;
}else{ }else{
this.coinGetShow = true this.coinGetShow = true
this.msg.StandardCurrencyId = -1 this.msg.StandardCurrencyId = -1
......
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