@annalib/anna-core 20.6.7 → 20.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1939,6 +1939,7 @@ class AnnaFilterService {
|
|
|
1939
1939
|
"timeoutDate",
|
|
1940
1940
|
"ViolatingSpotDate",
|
|
1941
1941
|
"ViolatedSpotDate",
|
|
1942
|
+
"ActualWeekStartDate",
|
|
1942
1943
|
];
|
|
1943
1944
|
const timeArr = [
|
|
1944
1945
|
"StartTimeForFilter",
|
|
@@ -2064,7 +2065,8 @@ class AnnaFilterService {
|
|
|
2064
2065
|
this.selectedRadio === "date" ||
|
|
2065
2066
|
this.selectedRadio === "revisionStartDate" ||
|
|
2066
2067
|
this.selectedRadio === "GeneratedOn" ||
|
|
2067
|
-
this.selectedRadio === "Week"
|
|
2068
|
+
this.selectedRadio === "Week" ||
|
|
2069
|
+
this.selectedRadio === "ActualWeekStartDate") {
|
|
2068
2070
|
isDataFiltered =
|
|
2069
2071
|
!isEqual(this.initialValueMap.get(this.selectedRadio), this.tooltipSelectedMap.get(this.selectedRadio)) && !isEqual(this.tooltipSelectedMap.get(this.selectedRadio), this.flightDateRange);
|
|
2070
2072
|
if (!isDataFiltered && this.tooltipSelectedMap.has(this.selectedRadio)) {
|
|
@@ -2129,6 +2131,7 @@ class AnnaFilterService {
|
|
|
2129
2131
|
key === "revisionStartDate" ||
|
|
2130
2132
|
key === "GeneratedOn" ||
|
|
2131
2133
|
key === "Week" ||
|
|
2134
|
+
key == "ActualWeekStartDate" ||
|
|
2132
2135
|
key === "ViolatedSpotDate" ||
|
|
2133
2136
|
key === "ViolatingSpotDate") {
|
|
2134
2137
|
filteredData = filteredData.filter((obj) => this.isObjectInTheRange(obj, value, key));
|
|
@@ -2257,6 +2260,7 @@ class AnnaFilterService {
|
|
|
2257
2260
|
key === "flightStartDate" ||
|
|
2258
2261
|
key === "flightEndDate" ||
|
|
2259
2262
|
key === "Week" ||
|
|
2263
|
+
key === "ActualWeekStartDate" ||
|
|
2260
2264
|
key === "timeoutDate") {
|
|
2261
2265
|
parsingFormat = "MM/DD/YYYY";
|
|
2262
2266
|
const dateIsBetweenSelDate = dayjs(obj[key], parsingFormat).isBetween(value.minSelectedDate, value.maxSelectedDate);
|
|
@@ -2321,6 +2325,7 @@ class AnnaFilterService {
|
|
|
2321
2325
|
key === "revisionStartDate" ||
|
|
2322
2326
|
key === "GeneratedOn" ||
|
|
2323
2327
|
key === "Week" ||
|
|
2328
|
+
key === "ActualWeekStartDate" ||
|
|
2324
2329
|
key === "ViolatedSpotDate" ||
|
|
2325
2330
|
key === "ViolatingSpotDate") {
|
|
2326
2331
|
filteredData = filteredData.filter((obj) => this.isObjectInTheRange(obj, value, key));
|