tnx-shared 5.0.43 → 5.0.44

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.
@@ -11550,7 +11550,7 @@
11550
11550
  arrPromiseDontNeedWait = [];
11551
11551
  arrSchemaDontNeedWait = [];
11552
11552
  _loop_1 = function (schema) {
11553
- var field, arrValue_1, promise, result, funcGetLabel_1;
11553
+ var field, arrValue_1, promise, filters, result, funcGetLabel_1;
11554
11554
  return __generator(this, function (_a) {
11555
11555
  switch (_a.label) {
11556
11556
  case 0:
@@ -11585,7 +11585,11 @@
11585
11585
  promise = schema.baseService.getDataDropdown(schema.groupCode, arrValue_1, this_1.createDropdownOptions(schema));
11586
11586
  }
11587
11587
  else {
11588
- promise = schema.baseService.getDataDropdownByFilter([this_1.newFilter(schema.valueField, exports.Operator.in, arrValue_1)], this_1.createDropdownOptions(schema));
11588
+ filters = [this_1.newFilter(schema.valueField, exports.Operator.in, arrValue_1)];
11589
+ if (schema.modifyFilter) {
11590
+ schema.modifyFilter(filters);
11591
+ }
11592
+ promise = schema.baseService.getDataDropdownByFilter(filters, this_1.createDropdownOptions(schema));
11589
11593
  }
11590
11594
  if (!(schema.order != null)) return [3 /*break*/, 2];
11591
11595
  return [4 /*yield*/, promise];