tnx-shared 5.1.529 → 5.1.531

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.
@@ -6685,6 +6685,7 @@
6685
6685
  if (schema.baseService instanceof MasterDataService) {
6686
6686
  return schema.baseService.getDataDropdown(schema.groupCode, arrValue, this.createDropdownOptions(schema));
6687
6687
  }
6688
+ schema.plusUrl = 'IgnoreAllBaseFilter';
6688
6689
  return schema.baseService.getDataDropdownByFilter([this._commonService.newFilter(schema.valueField, exports.Operator.in, arrValue)], this.createDropdownOptions(schema));
6689
6690
  };
6690
6691
  CrudService.prototype.mapValueMultiple = function (arrValue, valueToMap, schema) {
@@ -7652,6 +7653,11 @@
7652
7653
  ];
7653
7654
  return this.getAll(filters, fields, sorts, plusUrl);
7654
7655
  };
7656
+ BaseService.prototype.getAllWithIgnore = function (filters, fields, sorts) {
7657
+ if (fields === void 0) { fields = ''; }
7658
+ if (sorts === void 0) { sorts = []; }
7659
+ return this.getAll(filters, fields, sorts, 'IgnoreAllBaseFilter');
7660
+ };
7655
7661
  BaseService.prototype.getAll = function (filters, fields, sorts, plusUrl) {
7656
7662
  if (fields === void 0) { fields = ''; }
7657
7663
  if (sorts === void 0) { sorts = []; }