Commit 19367eaa authored by 黄奎's avatar 黄奎
parents 16f4fae7 97e4988f
...@@ -1786,7 +1786,8 @@ ...@@ -1786,7 +1786,8 @@
name: 'TradeTicketDetails', name: 'TradeTicketDetails',
query: { query: {
PeriodId: GetDetail.ReFinanceId, PeriodId: GetDetail.ReFinanceId,
OutBranchId: GetDetail.RB_Branch_Id, // OutBranchId: GetDetail.RB_Branch_Id,
RB_Branch_Id: GetDetail.RB_Branch_Id,
blank: "y", blank: "y",
tab: "同业提成详情" tab: "同业提成详情"
} }
......
...@@ -609,6 +609,15 @@ ...@@ -609,6 +609,15 @@
this.msg.StartTime = this.getBeforeDate(0, new Date()) this.msg.StartTime = this.getBeforeDate(0, new Date())
this.msg.EndTime = this.getBeforeDate(0, new Date()) this.msg.EndTime = this.getBeforeDate(0, new Date())
this.DatelistBM = [new Date(this.msg.StartTime),new Date()] this.DatelistBM = [new Date(this.msg.StartTime),new Date()]
if(this.$route.query.Q_IsCollect){
this.msg.Q_IsCollect=this.$route.query.Q_IsCollect
this.msg.DepartSTime=this.$route.query.DepartSTime
this.msg.DepartETime=this.$route.query.DepartETime
this.msg.StartTime = ''
this.msg.EndTime = ''
this.DatelistBM = []
this.DatelistUse = [this.msg.DepartSTime,this.msg.DepartETime]
}
// this.GetOrderStatusEnumList()//订单状态 // this.GetOrderStatusEnumList()//订单状态
// this.GetTicketStatusEnumList()//出票状态 // this.GetTicketStatusEnumList()//出票状态
this.GetOrderTypeEnumList() this.GetOrderTypeEnumList()
......
...@@ -523,7 +523,10 @@ ...@@ -523,7 +523,10 @@
this.$router.push({ this.$router.push({
name: 'erpMyCustomerOrder', name: 'erpMyCustomerOrder',
query: { query: {
blank: 'y' blank: 'y',
Q_IsCollect: "2",
DepartSTime: this.commissionMsg.DepartSTime,
DepartETime: this.commissionMsg.DepartETime
} }
}); });
}, },
...@@ -556,6 +559,7 @@ ...@@ -556,6 +559,7 @@
}, },
// 获取预期数据 // 获取预期数据
getData(){ getData(){
// 日本欧洲提成
this.apipost('sellcommission_GetTYSaleExpectCommission', this.msg, this.apipost('sellcommission_GetTYSaleExpectCommission', this.msg,
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
...@@ -591,6 +595,7 @@ ...@@ -591,6 +595,7 @@
}, },
err => {this.loading = false} err => {this.loading = false}
); );
// 国内提成
this.apipost('sellcommission_Post_GetGNSaleExpectCommission', this.msg, this.apipost('sellcommission_Post_GetGNSaleExpectCommission', this.msg,
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
...@@ -613,7 +618,7 @@ ...@@ -613,7 +618,7 @@
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let data = res.data.data.pageData let data = res.data.data.pageData
if(data.length>5){ if(data.length>5){
for(let i=0;i<6;i++){ for(let i=0;i<5;i++){
this.OrderList.push(data[i]) this.OrderList.push(data[i])
} }
}else{ }else{
......
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