This happens because the “billingProvider” is blank because nothing is filled in the Billing Options Form.
In claim it assumes a default box17Qualifier of ‘DK’… I think the default box17Qualifier should be null indicating nothing is being specified or perhaps there is another upstream check to indicate that no Billing Options are specified like billing_options is null?
public function box17Qualifier()
{
//If no box qualifier specified use "DK" for ordering provider
//someday might make mbo form the place to set referring instead of demographics under choices
return empty($this->billing_options['provider_qualifier_code']) ? 'DK' :
$this->billing_options['provider_qualifier_code'];
}
I would like to make the changes in a way the community will accept (a new concept for me!) so wanted to check in and get some suggestions.
Also - should I enter these as issues and bypass the forum?
We are having an issue with this.
At claim level with no address info the ordering provider needs to be in the claim. Oklahoma Medicaid wants the city state zip too.
Where should I look for this? I will build a PR.
Here is the PR that adds Ordering Provider to the 837. This won’t make patch 1 for v7.0.2. If you need this prior to next patch release or version release. You can grab the code from this PR and apply it.