@xuda.io/xuda-worker-bundle-min 1.3.1093 → 1.3.1094
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/index.js +16 -16
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8205,8 +8205,8 @@ func.events.execute = async function (
|
|
|
8205
8205
|
func.utils.debug.log(
|
|
8206
8206
|
SESSION_ID,
|
|
8207
8207
|
_session.DS_GLB[dsP].prog_id +
|
|
8208
|
-
|
|
8209
|
-
|
|
8208
|
+
"_" +
|
|
8209
|
+
_session.DS_GLB[dsP].callingMenuId,
|
|
8210
8210
|
{
|
|
8211
8211
|
module: "widgets",
|
|
8212
8212
|
action: "Init",
|
|
@@ -8226,8 +8226,8 @@ func.events.execute = async function (
|
|
|
8226
8226
|
func.utils.debug.log(
|
|
8227
8227
|
SESSION_ID,
|
|
8228
8228
|
_session.DS_GLB[dsP].prog_id +
|
|
8229
|
-
|
|
8230
|
-
|
|
8229
|
+
"_" +
|
|
8230
|
+
_session.DS_GLB[dsP].callingMenuId,
|
|
8231
8231
|
{
|
|
8232
8232
|
module: "widgets",
|
|
8233
8233
|
action: "Init",
|
|
@@ -8787,16 +8787,16 @@ func.events.execute = async function (
|
|
|
8787
8787
|
|
|
8788
8788
|
const output_field = await get_args_property_value("outputField");
|
|
8789
8789
|
|
|
8790
|
-
|
|
8791
|
-
|
|
8792
|
-
|
|
8793
|
-
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
|
|
8797
|
-
|
|
8798
|
-
|
|
8799
|
-
|
|
8790
|
+
if (!output_field) {
|
|
8791
|
+
func.utils.debug_report(
|
|
8792
|
+
SESSION_ID,
|
|
8793
|
+
"func.events.execute",
|
|
8794
|
+
`${elementP} >${triggerP} >${functionP} > Output field not defined`,
|
|
8795
|
+
"W"
|
|
8796
|
+
);
|
|
8797
|
+
// func.events.delete_job(SESSION_ID, jobNoP);
|
|
8798
|
+
// return;
|
|
8799
|
+
}
|
|
8800
8800
|
|
|
8801
8801
|
const api_ret = await func.api.call_project_api(_prog_id, params_obj);
|
|
8802
8802
|
|
|
@@ -9081,7 +9081,7 @@ func.events.delete_job = function (SESSION_ID, jobNoP) {
|
|
|
9081
9081
|
if (ds_obj) {
|
|
9082
9082
|
delete SCREEN_BLOCKER_OBJ[
|
|
9083
9083
|
ds_obj.screenId +
|
|
9084
|
-
|
|
9084
|
+
(ds_obj.callingScreenId ? "_" + ds_obj.callingScreenId : "")
|
|
9085
9085
|
];
|
|
9086
9086
|
}
|
|
9087
9087
|
if (
|
|
@@ -9108,7 +9108,7 @@ func.events.delete_job_0 = function (SESSION_ID) {
|
|
|
9108
9108
|
if (ds_obj) {
|
|
9109
9109
|
delete SCREEN_BLOCKER_OBJ[
|
|
9110
9110
|
ds_obj.screenId +
|
|
9111
|
-
|
|
9111
|
+
(ds_obj.callingScreenId ? "_" + ds_obj.callingScreenId : "")
|
|
9112
9112
|
];
|
|
9113
9113
|
}
|
|
9114
9114
|
if (
|