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.
- package/bundles/tnx-shared.umd.js +6 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/services/base.service.js +4 -1
- package/esm2015/services/crud.service.js +2 -1
- package/fesm2015/tnx-shared.js +4 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/base.service.d.ts +1 -0
- package/services/base.service.d.ts.map +1 -1
- package/services/crud.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -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 = []; }
|