Commit 15e382b8 authored by youjie's avatar youjie

no message

parent 7302b170
...@@ -822,6 +822,7 @@ ...@@ -822,6 +822,7 @@
IsUseCoupon: "0", IsUseCoupon: "0",
IsUseRedEnvelopeMoney: "0", IsUseRedEnvelopeMoney: "0",
CustomerId:"0", CustomerId:"0",
isNormal:0,
}, },
employeeMsg: { employeeMsg: {
RB_Group_id: "0", RB_Group_id: "0",
...@@ -938,6 +939,10 @@ ...@@ -938,6 +939,10 @@
this.msg.CEndDate = this.$route.query.CEndDate this.msg.CEndDate = this.$route.query.CEndDate
if(this.$route.query.discount) this.msg.IsUseCoupon = this.$route.query.discount if(this.$route.query.discount) this.msg.IsUseCoupon = this.$route.query.discount
} }
if(this.$route.query.BranchId>=-1){
this.msg.BranchId = this.$route.query.BranchId
}
if(this.$route.query.isNormal) this.msg.isNormal =this.$route.query.isNormal
if(this.$route.query.CustomerName){ if(this.$route.query.CustomerName){
this.GetCustomerListByKeyWord(this.$route.query.CustomerName,1); this.GetCustomerListByKeyWord(this.$route.query.CustomerName,1);
if(this.$route.query.CustomerId){ if(this.$route.query.CustomerId){
...@@ -1320,6 +1325,10 @@ ...@@ -1320,6 +1325,10 @@
this.msg.CEndDate = this.$route.query.CEndDate this.msg.CEndDate = this.$route.query.CEndDate
if(this.$route.query.discount) this.msg.IsUseCoupon = this.$route.query.discount if(this.$route.query.discount) this.msg.IsUseCoupon = this.$route.query.discount
} }
if(this.$route.query.BranchId>=-1){
this.msg.BranchId = this.$route.query.BranchId
}
if(this.$route.query.isNormal) this.msg.isNormal =this.$route.query.isNormal
if(this.$route.query.CustomerName){ if(this.$route.query.CustomerName){
this.GetCustomerListByKeyWord(this.$route.query.CustomerName,1); this.GetCustomerListByKeyWord(this.$route.query.CustomerName,1);
if(this.$route.query.CustomerId){ if(this.$route.query.CustomerId){
......
...@@ -883,18 +883,22 @@ export default { ...@@ -883,18 +883,22 @@ export default {
query = { query = {
CStartDate: this.parameters.dateRange[0], CStartDate: this.parameters.dateRange[0],
CEndDate: this.parameters.dateRange[1], CEndDate: this.parameters.dateRange[1],
BranchId: this.parameters.branchId,
isNormal: 1,
blank: "y", blank: "y",
} }
}else if(type==6){ }else if(type==6){
query = { query = {
CStartDate: this.parameters.dateRange[0], CStartDate: this.parameters.dateRange[0],
CEndDate: this.parameters.dateRange[1], CEndDate: this.parameters.dateRange[1],
isNormal: 1,
blank: "y", blank: "y",
} }
}else if(type==7){ }else if(type==7){
query = { query = {
CStartDate: this.parameters.dateRange[0], CStartDate: this.parameters.dateRange[0],
CEndDate: this.parameters.dateRange[1], CEndDate: this.parameters.dateRange[1],
isNormal: 1,
blank: "y", blank: "y",
} }
...@@ -903,6 +907,7 @@ export default { ...@@ -903,6 +907,7 @@ export default {
CStartDate: this.parameters.dateRange[0], CStartDate: this.parameters.dateRange[0],
CEndDate: this.parameters.dateRange[1], CEndDate: this.parameters.dateRange[1],
discount: 1, discount: 1,
isNormal: 1,
blank: "y", blank: "y",
} }
} }
......
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