Commit 3cc12738 authored by youjie's avatar youjie

no message

parent 8a998dcc
......@@ -925,7 +925,7 @@ export default {
this.coinGetList = res.data.data;
if(this.msg.RB_Branch_Id == -1){
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{
this.coinGetShow = true
this.msg.StandardCurrencyId = -1
......
......@@ -874,7 +874,7 @@ export default {
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({
path: "/" + path,
query: {
......@@ -882,6 +882,7 @@ export default {
month:month,
BranchId:BranchId,
CostIds:ids,
StandardCurrencyId:StandardCurrencyId,
blank: "y"
}
});
......@@ -905,7 +906,7 @@ export default {
if(rowIndex<15){
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=="联运收入"){
that.goUrl("CombinedRevenueReport",startDate,endDate,BranchId,"联运收入")
}
......@@ -917,7 +918,7 @@ export default {
that.goUrl("RecPayQueryTeamV2",startDate,endDate,BranchId,"应付团款查询")
}
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{
if(rowData.ZhaiYao=="员工提成"){
......@@ -962,13 +963,13 @@ export default {
month:month,
BranchId:rowData.BranchId,
CostIds:rowData.CostIds,
StandardCurrencyId,
StandardCurrencyId:StandardCurrencyId,
"IsJapanNonbusinessIncome":1,
blank: "y"
}
});
}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 {
}
}
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 {
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.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){
this.msg.LtIdStr=this.$route.query.LtIdStr
}
......@@ -1961,7 +1960,7 @@ export default {
this.coinGetList = res.data.data;
if(this.msg.OutBranchId == -1){
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{
this.coinGetShow = true
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