Skip to content

Commit

Permalink
Fix for the replacement claim logic
Browse files Browse the repository at this point in the history
Fix for the replacement claim logic
  • Loading branch information
teryhill authored and bradymiller committed Oct 10, 2015
1 parent 32c466f commit ec2cd87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Claim.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ function medicaidOriginalReference() {
}

function frequencyTypeCode() {
return empty($this->billing_options['replacement_claim']) ? '1' : '7';
return ($this->billing_options['replacement_claim'] == 1) ? '7' : '1';
}

function additionalNotes() {
Expand Down

0 comments on commit ec2cd87

Please sign in to comment.