Last active
January 6, 2020 04:53
-
-
Save jorgecolonconsulting/6a6bb5b7f68196df26d2005e2cd0c81e to your computer and use it in GitHub Desktop.
Customer Sync
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Customer Sync | |
Idle | |
start sync -> In Progress | |
Complete | |
Complete No Errors | |
Complete Errors | |
retry errored customers -> Retrying Errored Customers | |
In Progress& | |
check customer -> In Progress | |
Checking Customer | |
customer errored? -> In Progress Errors | |
next customer to check? -> In Progress | |
done? -> Complete No Errors | |
done with errors? -> Complete Errors | |
In Progress Status | |
In Progress No Errors | |
In Progress Errors | |
Retrying Errored Customers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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