rez_core 2.1.92 → 2.1.93
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
|
@@ -96,12 +96,42 @@ export class EntityTableService {
|
|
|
96
96
|
entityTable.entity_type,
|
|
97
97
|
);
|
|
98
98
|
entityTableDto.operation_list = {
|
|
99
|
-
text: await this.listMasterService.getDropdownOptions(
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
99
|
+
text: await this.listMasterService.getDropdownOptions(
|
|
100
|
+
'OPT',
|
|
101
|
+
{},
|
|
102
|
+
[],
|
|
103
|
+
loggedInUser,
|
|
104
|
+
),
|
|
105
|
+
number: await this.listMasterService.getDropdownOptions(
|
|
106
|
+
'OPN',
|
|
107
|
+
{},
|
|
108
|
+
[],
|
|
109
|
+
loggedInUser,
|
|
110
|
+
),
|
|
111
|
+
date: await this.listMasterService.getDropdownOptions(
|
|
112
|
+
'OPD',
|
|
113
|
+
{},
|
|
114
|
+
[],
|
|
115
|
+
loggedInUser,
|
|
116
|
+
),
|
|
117
|
+
select: await this.listMasterService.getDropdownOptions(
|
|
118
|
+
'OPS',
|
|
119
|
+
{},
|
|
120
|
+
[],
|
|
121
|
+
loggedInUser,
|
|
122
|
+
),
|
|
123
|
+
multiselect: await this.listMasterService.getDropdownOptions(
|
|
124
|
+
'OPM',
|
|
125
|
+
{},
|
|
126
|
+
[],
|
|
127
|
+
loggedInUser,
|
|
128
|
+
),
|
|
129
|
+
year: await this.listMasterService.getDropdownOptions(
|
|
130
|
+
'OPY',
|
|
131
|
+
{},
|
|
132
|
+
[],
|
|
133
|
+
loggedInUser,
|
|
134
|
+
),
|
|
105
135
|
// Add any other operations you want to include
|
|
106
136
|
};
|
|
107
137
|
entityTableDto.default_filter =
|