@optimiser/common 1.0.388 → 1.0.389
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.
- package/dist/lib/utility.js +2 -6
- package/package.json +1 -1
package/dist/lib/utility.js
CHANGED
|
@@ -2431,12 +2431,8 @@ function FilterConditions(condition, match, fields) {
|
|
|
2431
2431
|
matchValue = { '$regex': '^(?!' + obj.Value + '$)', '$options': 'i' };
|
|
2432
2432
|
break;
|
|
2433
2433
|
case "GREATER_THAN":
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
// matchValue = { '$gt': moment(obj.Value).endOf('day').toDate() };
|
|
2437
|
-
// } else
|
|
2438
|
-
matchValue = { '$gt': obj.Value };
|
|
2439
|
-
}
|
|
2434
|
+
//QPC-9260 Abrar
|
|
2435
|
+
matchValue = { '$gt': obj.Value };
|
|
2440
2436
|
break;
|
|
2441
2437
|
case "LESS_THAN":
|
|
2442
2438
|
// if (["date", "datetime"].includes(uiDataType)) {
|