rez_core 7.1.76 → 7.1.78
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/package.json
CHANGED
|
@@ -364,10 +364,11 @@ export class EntityDataService {
|
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
return callClient('getEntityDropdown', {
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
loggedInUser,
|
|
367
|
+
entityType: ds_entitytype,
|
|
368
|
+
status,
|
|
370
369
|
values,
|
|
370
|
+
onlyValues,
|
|
371
|
+
loggedInUser,
|
|
371
372
|
});
|
|
372
373
|
}
|
|
373
374
|
|
|
@@ -383,10 +384,10 @@ export class EntityDataService {
|
|
|
383
384
|
}
|
|
384
385
|
|
|
385
386
|
return callClient('getListMasterDropdown', {
|
|
386
|
-
ds_entitytype,
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
387
|
+
listType: ds_entitytype,
|
|
388
|
+
status, values,
|
|
389
|
+
onlyValues,
|
|
390
|
+
loggedInUser
|
|
390
391
|
});
|
|
391
392
|
}
|
|
392
393
|
|
|
@@ -424,7 +425,7 @@ export class EntityDataService {
|
|
|
424
425
|
);
|
|
425
426
|
const tableName = entityMaster.data_source;
|
|
426
427
|
|
|
427
|
-
if (values) {
|
|
428
|
+
if (values && values.length > 0) {
|
|
428
429
|
entities = await this.entityManager
|
|
429
430
|
.createQueryBuilder()
|
|
430
431
|
.select('*')
|