-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write a tech spec to allow tasks to block dispatch #14055
Comments
@araposo-tistatech Do we know if these tasks should block a case from being assigned to dispatch, or blocked from actually being dispatched/outcoded |
@hschallhorn these tasks should block the case from actually being dispatched. The issue with that is it will cause an increase in dispatch's queue of cases that cannot be worked or moved. |
Timeboxing to a 3! |
Notes from spitballing with @hschallhorn! AMA we can use similar logic to blocking distribution. Legacy... not sure we can do this in caseflow? Might be a matter of the VACOLS status? AMA For things that block dispatch, should we instantiate the dispatch task when we create them? What are the implications for autoassign? How do we stop them from displaying to users when they're not actionable? Keep it from affecting the days waiting? |
Kat and I briefly discussed this in pairing. Dumping some thoughts here in case neither of us are the ones who pick this up! Relation to blocking DistributionWe already implement the concept of a mail task that blocks distribution. This is easy enough as every appeal is created with a distribution task. Question: Do we want to similarly create a dispatch task for all appeals upon creation?
Optics of having an open dispatch taskMany users have complained about the confusing "pending dispatch" wording in case timeline for every case, regardless of whether or not that case is actually at dispatch. Will having an open dispatch task at any point in the appeals process be similarly confusing? Will we need to hide this task from users until it is ready to be worked? |
Notes from pairing!
|
Closing this as discussion going forward should occur in #14661 |
According to feedback from the board, some tasks should block a caseflow case from being dispatched. These tasks will (eventually) be:
We do not currently have logic to allow for tasks to block dispatch, only for tasks to block distribution.
AC
The text was updated successfully, but these errors were encountered: