Skip to content

Instantly share code, notes, and snippets.

@schultbr
Created October 12, 2021 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schultbr/a564cf44667f77334678f899770ff2f1 to your computer and use it in GitHub Desktop.
Save schultbr/a564cf44667f77334678f899770ff2f1 to your computer and use it in GitHub Desktop.
Sample Parallel Workflows
Sample Parallel Workflows
Submission*
Signoff Submission Form -> Parallel Workflows
Parallel Workflows
Exam 1 Sub Workflow
QC1
Signoff QC Form - Query -> Submission
Signoff QC Form - Approve -> Processing1
Processing1
Processing complete -> Read1
Read1
Signoff Reader Form - Complete -> Pending Complete1
Signoff Reader Form - Adjudication -> Adjudication1
Reader 1 Read
signoff -> Reader 2 Read
Reader 2 Read
signoff -> Reader 1 Read
Adjudication1
Signoff Adjudication Form -> Pending Complete1
Pending Complete1
Exam 2 Sub Workflow
QC2
Signoff QC Form - Query -> Submission
Signoff QC Form - Approve -> Read2
Read2
Signoff Reader Form - Complete -> Pending Complete2
Pending Complete2
Complete
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment