Claims corrections (resubmissions or cancellations)
Change Claims Rejected or Denied Workflow
Every correction needs to be done in a new submission. This mean that every correction is a new claim referring the original claim.
More on:
Steps for a Replacement or Cancellation of a previous claim
- Get the claim ID from the claim you want to replace or cancel.
- Run rake task to create a new claim:
- For replacements (i.e: denied claims):
rake "finance:resubmit_claim[<CLAIM_ID>, true]"
- For cancellations (i.e: duplicated claims or accidentally submitted ones):
rake "finance:resubmit_claim[<CLAIM_ID>, false, true]"
- For replacements (i.e: denied claims):
- Submit the new claim (This is optional, pending claims are submitted automatically once a day):
- Run
SubmitClaimsJob.perform_later
from rails console or trigger submissions using corresponding payerCreateClaimsJobCreateClaimsJob
using resque web scheduled.
- Run