@ibiz-template/runtime 0.7.41-alpha.109 → 0.7.41-alpha.110
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/dist/index.esm.js +9 -3
- package/dist/index.system.min.js +1 -1
- package/out/service/utils/dynamic-code-list/dynamic-code-list.d.ts.map +1 -1
- package/out/service/utils/dynamic-code-list/dynamic-code-list.js +10 -4
- package/package.json +2 -2
- package/src/service/utils/dynamic-code-list/dynamic-code-list.ts +11 -3
package/dist/index.esm.js
CHANGED
|
@@ -69181,15 +69181,21 @@ var DynamicCodeListCache = class {
|
|
|
69181
69181
|
minorSortAppDEFieldId,
|
|
69182
69182
|
minorSortDir,
|
|
69183
69183
|
pvalueAppDEFieldId,
|
|
69184
|
-
customCond
|
|
69184
|
+
customCond,
|
|
69185
|
+
userParam
|
|
69185
69186
|
} = this.codeList;
|
|
69186
69187
|
if (minorSortAppDEFieldId && minorSortDir) {
|
|
69187
69188
|
Object.assign(tempParams, {
|
|
69188
69189
|
sort: "".concat(minorSortAppDEFieldId.toLowerCase(), ",").concat(minorSortDir.toLowerCase())
|
|
69189
69190
|
});
|
|
69190
69191
|
}
|
|
69191
|
-
|
|
69192
|
-
|
|
69192
|
+
let navParams = {};
|
|
69193
|
+
if (userParam && userParam.cond) {
|
|
69194
|
+
navParams = ScriptFactory.execSingleLine(userParam.cond);
|
|
69195
|
+
} else if (customCond) {
|
|
69196
|
+
navParams = ScriptFactory.execSingleLine(customCond);
|
|
69197
|
+
}
|
|
69198
|
+
if (navParams && Object.keys(navParams).length > 0) {
|
|
69193
69199
|
const addParams = convertNavData(navParams, tempParams, context);
|
|
69194
69200
|
Object.assign(tempParams, addParams);
|
|
69195
69201
|
}
|