@@ -418,7 +418,7 @@ impl FlowInstServ {
418
418
419
419
pub finish_ctx : Option < Value > ,
420
420
pub finish_time : Option < DateTime < Utc > > ,
421
- pub finish_abort : bool ,
421
+ pub finish_abort : Option < bool > ,
422
422
pub output_message : Option < String > ,
423
423
424
424
pub own_paths : String ,
@@ -429,6 +429,7 @@ impl FlowInstServ {
429
429
. columns ( [
430
430
( flow_inst:: Entity , flow_inst:: Column :: Id ) ,
431
431
( flow_inst:: Entity , flow_inst:: Column :: RelFlowModelId ) ,
432
+ ( flow_inst:: Entity , flow_inst:: Column :: RelBusinessObjId ) ,
432
433
( flow_inst:: Entity , flow_inst:: Column :: CurrentStateId ) ,
433
434
( flow_inst:: Entity , flow_inst:: Column :: CreateCtx ) ,
434
435
( flow_inst:: Entity , flow_inst:: Column :: CreateTime ) ,
@@ -482,7 +483,7 @@ impl FlowInstServ {
482
483
create_time : inst. create_time ,
483
484
finish_ctx : inst. finish_ctx . map ( |finish_ctx| TardisFuns :: json. json_to_obj ( finish_ctx) . unwrap ( ) ) ,
484
485
finish_time : inst. finish_time ,
485
- finish_abort : inst. finish_abort ,
486
+ finish_abort : inst. finish_abort . is_some ( ) ,
486
487
output_message : inst. output_message ,
487
488
own_paths : inst. own_paths ,
488
489
current_state_id : inst. current_state_id ,
0 commit comments