Hide Forgot
Should be possible to set dueData of a task in process definition, either as: - dueDate: a Date property that contains the actual date to be set - dueDelay: a String property specifying how much time (compared to now) should be added (should be same format as for notifications / escalations) The handler(s) should allow processing these properties.
Handlers are ready and committed: http://github.com/droolsjbpm/jbpm/commit/cf2c44dde
I've refactored the Handler to just use one variable "DueDate" to parse Dates (based on ISO standard) and period (with P prefix) : http://github.com/droolsjbpm/jbpm/commit/4c64d7868 You can take a look at the tests here: testTaskWithDueDate() and testTaskWithDelay() https://github.com/droolsjbpm/jbpm/blob/master/jbpm-human-task/jbpm-human-task-workitems/src/test/java/org/jbpm/services/task/wih/HTWorkItemHandlerBaseTest.java#L664
Verified in BPMS 6 ER7 (6.0.1-redhat-2) on the core engine side. Kris, is there a BZ which tracks this issue as an update of user interface in BPMN editors?
This property is not there by default but could be added manually (first define it in the inputSet and then set its value in the assignments).