-
Bug
-
Resolution: Done
-
Major
-
jBPM 4.4
JBPM version : 4.4-SNAPSHOT
org.jbpm.pvm.internal.history.model.HistoryTaskImpl
Newly created HistoryDetail is not added to the collection of the HistoryTaskImpl(Highlighted).
public void updated(TaskImpl task) {
if ( (assignee==null && task.getAssignee()!=null)
(assignee!=null) && (!assignee.equals(task.getAssignee())) ) { addDetail(new HistoryTaskAssignmentImpl(assignee, task.getAssignee())); this.assignee = task.getAssignee(); } if (priority!=task.getPriority()) { addDetail(new HistoryPriorityUpdateImpl(priority, task.getPriority())); this.priority = task.getPriority(); }if ( (duedate==null && task.getDuedate()!=null) |
---|
(duedate!=null) && (!duedate.equals(task.getDuedate())) ) { addDetail(new HistoryTaskDuedateUpdateImpl(duedate, task.getDuedate())); this.duedate = task.getDuedate(); } } |
// details //////////////////////////////////////////////////////////////////
public void addDetail(HistoryDetailImpl detail)
{ detail.setHistoryTask(this, nextDetailIndex); details.add(detail); nextDetailIndex++; }- is blocked by
-
JBPM-2393 expand task history to full audit logs
- Resolved