Skip to content

Commit

Permalink
fix: edi segment count for ordering provider (openemr#7922)
Browse files Browse the repository at this point in the history
* fix: edi segment count for ordering provider

* keep increment before adding to string

* fix syntax
  • Loading branch information
stephenwaite authored Jan 15, 2025
1 parent 2709c4f commit 0d85baa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Billing/X125010837P.php
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,9 @@ public static function genX12837P(
"*" .
"*" . "XX" .
"*" . $claim->ordererNPI() . "~\n";
++$edicount;
$out .= "N3" . "*" . $claim->ordererStreet() . "~\n";
++$edicount;
$out .= "N4" . "*" . $claim->ordererCity() . "*" .
$claim->ordererState() . "*" . $claim->ordererZip() . "~\n";
}
Expand Down

0 comments on commit 0d85baa

Please sign in to comment.