Created
November 15, 2023 15:57
-
-
Save justinobney/ddc330b84cc8f29bda55f09b226edf53 to your computer and use it in GitHub Desktop.
Integration Process
This file contains 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
Integration Process | |
Initial Assessment | |
primary goals determined -> System Evaluation | |
System Evaluation | |
has customer portal -> Portal Assessment | |
no customer portal -> Feature Selection | |
Portal Assessment | |
portal functionalities determined -> Portal Origin | |
Portal Origin | |
billing system-provided -> Additional Functionality Needs | |
in-house -> Feature Selection | |
Additional Functionality Needs | |
additional functionalities determined -> Integration Capabilities | |
Feature Selection | |
technical capabilities determined -> Integration Path | |
Integration Capabilities | |
Integration Path | |
comprehensive solution preferred -> Comprehensive Solution Features | |
embedded solution preferred -> Embedded Solution Features | |
Comprehensive Solution Features | |
key features determined -> End | |
Embedded Solution Features | |
critical embedded features determined -> UI UX Design Assistance | |
UI UX Design Assistance | |
assistance decision made -> End | |
End |
This file contains 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