@xuda.io/xuda-worker-bundle-min 1.3.1092 → 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 +17 -16
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1533,6 +1533,7 @@ glb.attr_abbreviations_arr = [
|
|
|
1533
1533
|
"xu-init",
|
|
1534
1534
|
];
|
|
1535
1535
|
glb.solid_attributes = ["disabled"];
|
|
1536
|
+
|
|
1536
1537
|
func.datasource = {};
|
|
1537
1538
|
func.datasource.create = async function (
|
|
1538
1539
|
SESSION_ID,
|
|
@@ -8204,8 +8205,8 @@ func.events.execute = async function (
|
|
|
8204
8205
|
func.utils.debug.log(
|
|
8205
8206
|
SESSION_ID,
|
|
8206
8207
|
_session.DS_GLB[dsP].prog_id +
|
|
8207
|
-
|
|
8208
|
-
|
|
8208
|
+
"_" +
|
|
8209
|
+
_session.DS_GLB[dsP].callingMenuId,
|
|
8209
8210
|
{
|
|
8210
8211
|
module: "widgets",
|
|
8211
8212
|
action: "Init",
|
|
@@ -8225,8 +8226,8 @@ func.events.execute = async function (
|
|
|
8225
8226
|
func.utils.debug.log(
|
|
8226
8227
|
SESSION_ID,
|
|
8227
8228
|
_session.DS_GLB[dsP].prog_id +
|
|
8228
|
-
|
|
8229
|
-
|
|
8229
|
+
"_" +
|
|
8230
|
+
_session.DS_GLB[dsP].callingMenuId,
|
|
8230
8231
|
{
|
|
8231
8232
|
module: "widgets",
|
|
8232
8233
|
action: "Init",
|
|
@@ -8786,16 +8787,16 @@ func.events.execute = async function (
|
|
|
8786
8787
|
|
|
8787
8788
|
const output_field = await get_args_property_value("outputField");
|
|
8788
8789
|
|
|
8789
|
-
|
|
8790
|
-
|
|
8791
|
-
|
|
8792
|
-
|
|
8793
|
-
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
|
|
8797
|
-
|
|
8798
|
-
|
|
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
|
+
}
|
|
8799
8800
|
|
|
8800
8801
|
const api_ret = await func.api.call_project_api(_prog_id, params_obj);
|
|
8801
8802
|
|
|
@@ -9080,7 +9081,7 @@ func.events.delete_job = function (SESSION_ID, jobNoP) {
|
|
|
9080
9081
|
if (ds_obj) {
|
|
9081
9082
|
delete SCREEN_BLOCKER_OBJ[
|
|
9082
9083
|
ds_obj.screenId +
|
|
9083
|
-
|
|
9084
|
+
(ds_obj.callingScreenId ? "_" + ds_obj.callingScreenId : "")
|
|
9084
9085
|
];
|
|
9085
9086
|
}
|
|
9086
9087
|
if (
|
|
@@ -9107,7 +9108,7 @@ func.events.delete_job_0 = function (SESSION_ID) {
|
|
|
9107
9108
|
if (ds_obj) {
|
|
9108
9109
|
delete SCREEN_BLOCKER_OBJ[
|
|
9109
9110
|
ds_obj.screenId +
|
|
9110
|
-
|
|
9111
|
+
(ds_obj.callingScreenId ? "_" + ds_obj.callingScreenId : "")
|
|
9111
9112
|
];
|
|
9112
9113
|
}
|
|
9113
9114
|
if (
|