@magic-xpa/engine 4.801.3 → 4.801.6
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/esm2020/src/ClientManager.mjs +2 -2
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/tasks/Task.mjs +2 -1
- package/fesm2015/magic-xpa-engine.mjs +3 -2
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -2
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -23622,6 +23622,7 @@ class Task extends TaskBase {
|
|
|
23622
23622
|
result = yield this.DataviewManager.Execute(dataViewCommand);
|
|
23623
23623
|
if (!result.Success)
|
|
23624
23624
|
return null;
|
|
23625
|
+
this.ResumeSubformLayout();
|
|
23625
23626
|
}
|
|
23626
23627
|
nonInteractiveTask = yield this.StartSubTasks(moveToFirstControl, nonInteractiveTask, callByDestSubForm);
|
|
23627
23628
|
this.InStartProcess = false;
|
|
@@ -30358,7 +30359,7 @@ class CommandsTable {
|
|
|
30358
30359
|
}
|
|
30359
30360
|
}
|
|
30360
30361
|
|
|
30361
|
-
let CurrentClientVersion = '4.801.
|
|
30362
|
+
let CurrentClientVersion = '4.801.6';
|
|
30362
30363
|
|
|
30363
30364
|
class ClientManager {
|
|
30364
30365
|
constructor() {
|
|
@@ -30632,7 +30633,7 @@ class ClientManager {
|
|
|
30632
30633
|
let task = MGDataCollection.Instance.GetTaskByID(taskId);
|
|
30633
30634
|
let control = null;
|
|
30634
30635
|
let newValue = value;
|
|
30635
|
-
if (controlName !== null)
|
|
30636
|
+
if (controlName !== null && task !== null)
|
|
30636
30637
|
control = task.getForm().GetCtrl(controlName);
|
|
30637
30638
|
if (control != null && control.DataType == StorageAttribute.NUMERIC) {
|
|
30638
30639
|
pic = control.getPIC();
|