@annalib/anna-core 31.1.20 → 31.1.28

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.
@@ -1974,14 +1974,7 @@ class AnnaFilterService {
1974
1974
  "postedADUsImps",
1975
1975
  "bookedVal",
1976
1976
  "userMGValue",
1977
- "rating",
1978
- "IMPS",
1979
- "rate",
1980
- "amount",
1981
- "bookedGRP",
1982
- "bookedGI",
1983
- "projectedGRP",
1984
- "projectedGI",
1977
+ "budget",
1985
1978
  ];
1986
1979
  const calendarArr = [
1987
1980
  "period",
@@ -2000,6 +1993,7 @@ class AnnaFilterService {
2000
1993
  "ViolatedSpotDate",
2001
1994
  "ActualWeekStartDate",
2002
1995
  "LastFetchedDate",
1996
+ "createdOn",
2003
1997
  ];
2004
1998
  const timeArr = [
2005
1999
  "StartTimeForFilter",
@@ -2204,7 +2198,8 @@ class AnnaFilterService {
2204
2198
  key === "ViolatedSpotDate" ||
2205
2199
  key === "ViolatingSpotDate" ||
2206
2200
  key === "scheduledDate" ||
2207
- key === "LastFetchedDate") {
2201
+ key === "LastFetchedDate" ||
2202
+ key === "createdOn") {
2208
2203
  filteredData = filteredData.filter((obj) => this.isObjectInTheRange(obj, value, key));
2209
2204
  }
2210
2205
  else if (key === "period") {
@@ -2423,7 +2418,8 @@ class AnnaFilterService {
2423
2418
  key === "ViolatedSpotDate" ||
2424
2419
  key === "ViolatingSpotDate" ||
2425
2420
  key === "scheduledDate" ||
2426
- key === "LastFetchedDate") {
2421
+ key === "LastFetchedDate" ||
2422
+ key === "createdOn") {
2427
2423
  filteredData = filteredData.filter((obj) => this.isObjectInTheRange(obj, value, key));
2428
2424
  }
2429
2425
  else if (key === "period") {
@@ -5044,6 +5040,7 @@ class AnnaNonEditableGenericTableComponent {
5044
5040
  this.tooltipRadioTextMap.set("offerType", "Offer Type");
5045
5041
  this.tooltipRadioTextMap.set("reviewedByUser", "Reviewed By");
5046
5042
  this.tooltipRadioTextMap.set("lastUpdatedAtDate", "Last Updated At");
5043
+ this.tooltipRadioTextMap.set("createdOn", "Created On");
5047
5044
  }
5048
5045
  selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
5049
5046
  rowData[columnKeys] = !rowData[columnKeys];