2 Replies Latest reply on Sep 5, 2006 5:19 PM by stibrian

    Task is assigned , but is it accepted ?

    jeanguyer

      Hi , I am new to Jbpm , and i want to make something like this :

      -assign a task to an actor (CreatedDate), and knew when he accepted it (startedDate), and if he don't accepted it before a deadline , reassign it to another guy. I want to know also if i can get the time between CreatedDate , StartedDate and EndDate for the process of certain type that was already terminated for statistics.

      Can you guys , can give me some clues ?

      Best regards,

      Jean Guyer



        • 1. Re: Task is assigned , but is it accepted ?
          kukeltje

          jbpm currently has no differentiation between created and started . A reassign can take place when the duedate ends or manually. The differences between the times can be calculated for create- and enddate with a hibernate query or whatever, not for the startdate (since it is not there)

          • 2. Re: Task is assigned , but is it accepted ?
            stibrian

            using a custom extension to TaskInstance and some custom logging you can get the desired behavior. Patience and use of the source will guide you - we needed and got the same thing working, so I know it's possible.

            Good luck.