diff --git a/src/stores/CustomerServices.js b/src/stores/CustomerServices.js
index 5689b40..75693eb 100644
--- a/src/stores/CustomerServices.js
+++ b/src/stores/CustomerServices.js
@@ -18,6 +18,7 @@ class CustomerServices {
this.selectedAgent = '';
this.selectedTeam = '';
this.selectedCountry = '';
+ this.selectedOrderStatus = '-1';
makeAutoObservable(this);
}
@@ -284,6 +285,7 @@ class CustomerServices {
.append('OldDate2', this.endDateString)
.append('DepList', this.selectedTeam)
.append('Country', this.selectedCountry)
+ .append('OrderStatus', this.selectedOrderStatus)
.build();
req.fetchJSON(fetchUrl)
.then(json => {
@@ -464,6 +466,10 @@ class CustomerServices {
this.selectedCountry = country;
}
+ selectStatus(status) {
+ this.selectedOrderStatus = status;
+ }
+
startDate;
endDate;
startDateString;
@@ -472,6 +478,7 @@ class CustomerServices {
selectedAgent;
selectedTeam;
selectedCountry;
+ selectedOrderStatus;
inProgress;
agentList = [];
diff --git a/src/views/DestinationGroupCount.js b/src/views/DestinationGroupCount.js
index 160c832..ad2c3df 100644
--- a/src/views/DestinationGroupCount.js
+++ b/src/views/DestinationGroupCount.js
@@ -57,7 +57,7 @@ const DestinationGroupCount = () => {