Skip to content

Commit 48bf530

Browse files
committed
fix: Fix sub application form unable to recall
1 parent d3a6a60 commit 48bf530

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apps/application/flow/workflow_manage.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,7 @@ def append_node(self, current_node):
460460
self.node_context.append(current_node)
461461

462462
def hand_event_node_result(self, current_node, node_result_future):
463+
runtime_node_id = current_node.runtime_node_id
463464
real_node_id = current_node.runtime_node_id
464465
child_node = {}
465466
view_type = current_node.view_type
@@ -487,7 +488,7 @@ def hand_event_node_result(self, current_node, node_result_future):
487488
current_node.up_node_id_list,
488489
content, False, 0, 0,
489490
{'node_type': current_node.type,
490-
'runtime_node_id': real_node_id,
491+
'runtime_node_id': runtime_node_id,
491492
'view_type': view_type,
492493
'child_node': child_node,
493494
'node_is_end': node_is_end,
@@ -499,7 +500,7 @@ def hand_event_node_result(self, current_node, node_result_future):
499500
current_node.id,
500501
current_node.up_node_id_list,
501502
'', False, 0, 0, {'node_is_end': True,
502-
'runtime_node_id': real_node_id,
503+
'runtime_node_id': runtime_node_id,
503504
'node_type': current_node.type,
504505
'view_type': view_type,
505506
'child_node': child_node,

0 commit comments

Comments
 (0)