Commit eed8729d authored by liudong1993's avatar liudong1993

1

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