Skip to content

Instantly share code, notes, and snippets.

@yonkeltron
Created April 25, 2019 18:25
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 yonkeltron/5f06b3aaaa9795bc023085f38248cd58 to your computer and use it in GitHub Desktop.
Save yonkeltron/5f06b3aaaa9795bc023085f38248cd58 to your computer and use it in GitHub Desktop.
Facets DQM Billing EFT Match
Facets DQM Billing EFT Match
Idle*
Receive Claim from FODS -> Processing Claim
Processing Claim
Query FCTS for Candidate Matches*
Candidate Matches Found -> Generate XML
No Candidate Matches Found -> Undefined
Generate XML
Success -> SAP SOAP Call for Matched Provider
Failure -> Undefined
SAP SOAP Call for Matched Provider
Match Code eq 0 -> Update Claim MATCHED_PRPR_ID in FODS
Match Code gt 0 -> Query FCTS for Candidate Matches
Update Claim MATCHED_PRPR_ID in FODS
Success -> Idle
Failure -> Log Error
Log Error
No Matter What -> Idle
Undefined
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