Commit eed8729d authored by liudong1993's avatar liudong1993

1

parent d0d6b302
...@@ -390,27 +390,15 @@ ...@@ -390,27 +390,15 @@
},err=>{}) },err=>{})
}, },
goTuanDetails(row) { goTuanDetails(row) {
let name = '' if(row.TCNUM=="-"){return;}
// if (row.IsOneDayOrder == 1) { this.$router.push({
// name = 'groupTourOrderByTuanOne' path: 'TeamBalancePayment',//TravelControlList
// } else { query: {
// name = 'groupTourOrderByTuan' id: row.TCID,
// } blank: 'y',
if (row.TravelType == 0) {//正常团 tab: '团队收支'//团控列表
name = 'TravelControlList' }
}else if (row.TravelType == 2) {//当地团 });
name = 'oneDayTrip'
} else {//小包团
name = 'TravelControlListSale'
}
this.$router.push({
name: name,
query: {
id: row.TCID,
tcmun: row.TCNUM,
blank: "y",
}
});
}, },
clickUrl(row){ clickUrl(row){
if(row.OrderType==1||row.OrderType==6){ if(row.OrderType==1||row.OrderType==6){
......
...@@ -1302,6 +1302,7 @@ export default { ...@@ -1302,6 +1302,7 @@ export default {
showID: false, showID: false,
active: 1, active: 1,
userId: 0, userId: 0,
empBranchId: -1,
//是否显示 //是否显示
isShowType:true, isShowType:true,
isShowGrounding:true, isShowGrounding:true,
...@@ -2692,6 +2693,7 @@ export default { ...@@ -2692,6 +2693,7 @@ export default {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
this.getCompanyMsg.RB_Group_Id = userInfo.RB_Group_id; //集团ID this.getCompanyMsg.RB_Group_Id = userInfo.RB_Group_id; //集团ID
this.userId = userInfo.EmployeeId; this.userId = userInfo.EmployeeId;
this.empBranchId = userInfo.RB_Branch_id;
if (this.$route.query.BranchId) { if (this.$route.query.BranchId) {
this.msg.OutBranchId = this.$route.query.BranchId?Number(this.$route.query.BranchId):this.msg.OutBranchId; this.msg.OutBranchId = this.$route.query.BranchId?Number(this.$route.query.BranchId):this.msg.OutBranchId;
} }
...@@ -2766,7 +2768,9 @@ export default { ...@@ -2766,7 +2768,9 @@ export default {
getChange(val){ getChange(val){
if(this.msg.OutBranchId == -1){ if(this.msg.OutBranchId == -1){
this.coinGetShow = false this.coinGetShow = false
this.msg.StandardCurrencyId = val>-1?val:this.coinGetList[0].ID if(this.empBranchId==0){
this.msg.StandardCurrencyId = val>-1?val:this.coinGetList[0].ID
}
}else{ }else{
this.coinGetShow = true this.coinGetShow = true
this.msg.StandardCurrencyId = -1 this.msg.StandardCurrencyId = -1
...@@ -3518,6 +3522,16 @@ export default { ...@@ -3518,6 +3522,16 @@ export default {
} }
if(BranchStatus==-1){ if(BranchStatus==-1){
this.BranchStatus=false; this.BranchStatus=false;
}else if(BranchStatus<-2){
this.BranchStatus=false;
if(this.msg.LineId<=0){
this.msg.OutBranchId=0-BranchStatus;
this.msg.StandardCurrencyId=-1;
this.CompanyList = this.CompanyList.filter(x=>{
if(x.Id==(0-BranchStatus)){return x;}
else{return;}
});
}
}else{ }else{
this.BranchStatus=true; this.BranchStatus=true;
this.msg.OutBranchId=BranchStatus; this.msg.OutBranchId=BranchStatus;
......
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