|
|
@ -18,6 +18,7 @@ class CustomerServices {
|
|
|
|
this.selectedAgent = '';
|
|
|
|
this.selectedAgent = '';
|
|
|
|
this.selectedTeam = '';
|
|
|
|
this.selectedTeam = '';
|
|
|
|
this.selectedCountry = '';
|
|
|
|
this.selectedCountry = '';
|
|
|
|
|
|
|
|
this.selectedOrderStatus = '-1';
|
|
|
|
makeAutoObservable(this);
|
|
|
|
makeAutoObservable(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -284,6 +285,7 @@ class CustomerServices {
|
|
|
|
.append('OldDate2', this.endDateString)
|
|
|
|
.append('OldDate2', this.endDateString)
|
|
|
|
.append('DepList', this.selectedTeam)
|
|
|
|
.append('DepList', this.selectedTeam)
|
|
|
|
.append('Country', this.selectedCountry)
|
|
|
|
.append('Country', this.selectedCountry)
|
|
|
|
|
|
|
|
.append('OrderStatus', this.selectedOrderStatus)
|
|
|
|
.build();
|
|
|
|
.build();
|
|
|
|
req.fetchJSON(fetchUrl)
|
|
|
|
req.fetchJSON(fetchUrl)
|
|
|
|
.then(json => {
|
|
|
|
.then(json => {
|
|
|
@ -464,6 +466,10 @@ class CustomerServices {
|
|
|
|
this.selectedCountry = country;
|
|
|
|
this.selectedCountry = country;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
selectStatus(status) {
|
|
|
|
|
|
|
|
this.selectedOrderStatus = status;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
startDate;
|
|
|
|
startDate;
|
|
|
|
endDate;
|
|
|
|
endDate;
|
|
|
|
startDateString;
|
|
|
|
startDateString;
|
|
|
@ -472,6 +478,7 @@ class CustomerServices {
|
|
|
|
selectedAgent;
|
|
|
|
selectedAgent;
|
|
|
|
selectedTeam;
|
|
|
|
selectedTeam;
|
|
|
|
selectedCountry;
|
|
|
|
selectedCountry;
|
|
|
|
|
|
|
|
selectedOrderStatus;
|
|
|
|
inProgress;
|
|
|
|
inProgress;
|
|
|
|
|
|
|
|
|
|
|
|
agentList = [];
|
|
|
|
agentList = [];
|
|
|
|