@xuda.io/runtime-bundle 1.0.727 → 1.0.729
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/js/xuda-runtime-bundle.js +19 -8
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +19 -8
- package/js/xuda-runtime-slim.min.es.js +19 -8
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +2 -2
- package/js/xuda-server-bundle.mjs +19 -7
- package/js/xuda-worker-bundle.js +19 -7
- package/js/xuda-worker-bundle.min.js +2 -2
- package/package.json +1 -1
|
@@ -27629,7 +27629,6 @@ func.UI.worker.add_to_queue = async function (SESSION_ID, source, functionP, par
|
|
|
27629
27629
|
obj.queue_key = queue_key;
|
|
27630
27630
|
|
|
27631
27631
|
let exist_job = UI_WORKER_OBJ.jobs.find((e) => {
|
|
27632
|
-
return false;
|
|
27633
27632
|
if (e.queue_key === queue_key) {
|
|
27634
27633
|
return e;
|
|
27635
27634
|
}
|
|
@@ -29965,7 +29964,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
29965
29964
|
try {
|
|
29966
29965
|
const row_idx = func.common.find_ROWID_idx(_ds, record_id);
|
|
29967
29966
|
// if (_ds.data_feed.rows[row_idx][field_id] !== value) {
|
|
29968
|
-
if (!_.isEqual(_ds.data_feed.rows[row_idx][field_id], value)) {
|
|
29967
|
+
if (true || !_.isEqual(_ds.data_feed.rows[row_idx][field_id], value)) {
|
|
29969
29968
|
_ds.data_feed.rows[row_idx][field_id] = value;
|
|
29970
29969
|
await set_fieldComputed_dependencies(dataSource, field_id, null);
|
|
29971
29970
|
|
|
@@ -35035,16 +35034,28 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35035
35034
|
EXP_BUSY = false;
|
|
35036
35035
|
}
|
|
35037
35036
|
|
|
35038
|
-
|
|
35037
|
+
const results = {
|
|
35039
35038
|
result: ret,
|
|
35040
|
-
fields
|
|
35041
|
-
res
|
|
35039
|
+
fields,
|
|
35040
|
+
res,
|
|
35042
35041
|
explain: result,
|
|
35043
|
-
error
|
|
35044
|
-
warning
|
|
35042
|
+
error,
|
|
35043
|
+
warning,
|
|
35045
35044
|
req: valP,
|
|
35046
|
-
var_error_found
|
|
35045
|
+
var_error_found,
|
|
35047
35046
|
};
|
|
35047
|
+
console.log('EXP>>>', results);
|
|
35048
|
+
return results;
|
|
35049
|
+
// return {
|
|
35050
|
+
// result: ret,
|
|
35051
|
+
// fields: fields,
|
|
35052
|
+
// res: res,
|
|
35053
|
+
// explain: result,
|
|
35054
|
+
// error: error,
|
|
35055
|
+
// warning: warning,
|
|
35056
|
+
// req: valP,
|
|
35057
|
+
// var_error_found: var_error_found,
|
|
35058
|
+
// };
|
|
35048
35059
|
};
|
|
35049
35060
|
const variable_not_exist = async function () {
|
|
35050
35061
|
try {
|