|
|
|
@ -48,7 +48,10 @@ public class StandardWorkTicketConsumer implements IQueueConsume {
|
|
|
|
|
BeanUtils.copyProperties(response,regularWorkflowOperationLog); |
|
|
|
|
if (ObjectUtils.isNotEmpty(regularWorkflowOperationLog)) { |
|
|
|
|
regularWorkflowOperationLog.setVariables(JSON.toJSONString(response.getVariables())); |
|
|
|
|
regularWorkflowOperationLog.setTakeId(response.getTaskId()); |
|
|
|
|
regularWorkflowOperationLog.setTakeName(response.getTaskName()); |
|
|
|
|
regularWorkflowOperationLog.setIsOperationLog(true); |
|
|
|
|
regularWorkflowOperationLog.setProcessInstanceKey(response.getProcessInstanceId()); |
|
|
|
|
log.info("正在记录操作日志WorkflowOperationLog.... :{}", regularWorkflowOperationLog); |
|
|
|
|
workflowOperationLogService.save(regularWorkflowOperationLog); |
|
|
|
|
} |
|
|
|
@ -72,7 +75,10 @@ public class StandardWorkTicketConsumer implements IQueueConsume {
|
|
|
|
|
BeanUtils.copyProperties(response,workflowOperationLog); |
|
|
|
|
if (ObjectUtils.isNotEmpty(workflowOperationLog)) { |
|
|
|
|
regularWorkflowOperationLog.setVariables(JSON.toJSONString(response.getVariables())); |
|
|
|
|
regularWorkflowOperationLog.setTakeId(response.getTaskId()); |
|
|
|
|
regularWorkflowOperationLog.setTakeName(response.getTaskName()); |
|
|
|
|
regularWorkflowOperationLog.setIsOperationLog(false); |
|
|
|
|
regularWorkflowOperationLog.setProcessInstanceKey(response.getProcessInstanceId()); |
|
|
|
|
log.info("正在保存到hzims_workflow_operation_log.... :{}", workflowOperationLog); |
|
|
|
|
workflowOperationLogService.save(workflowOperationLog); |
|
|
|
|
} |
|
|
|
|