Skip to content

Commit

Permalink
fix typo in an 837 claim function call (openemr#2669)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwaite committed Sep 14, 2019
1 parent 4104cbd commit 19d19c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Billing/X12_5010_837P.php
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ public static function gen_x12_837($pid, $encounter, &$log, $encounter_claim = f
$log .= "*** Missing patient last name.\n";
}
$out .= "*";
if ($claim->patientFirstName) {
if ($claim->patientFirstName()) {
$out .= $claim->patientFirstName();
} else {
$log .= "*** Missing patient first name.\n";
Expand Down

0 comments on commit 19d19c8

Please sign in to comment.