Skip to content

Commit

Permalink
formatting for printing text claims
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwaite authored and bradymiller committed Mar 21, 2015
1 parent 0c89d00 commit ff83d96
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions library/gen_hcfa_1500.inc.php
Expand Up @@ -705,7 +705,7 @@ function gen_hcfa_1500_page($pid, $encounter, &$log, &$claim) {
}

// 32a. Service Facility NPI
put_hcfa(61, 24, 10, $claim->facilityNPI());
put_hcfa(61, 23, 10, $claim->facilityNPI());

// 32b. Service Facility Other ID
// Note that Medicare does NOT want this any more.
Expand All @@ -715,7 +715,7 @@ function gen_hcfa_1500_page($pid, $encounter, &$log, &$claim) {
}

// 33a. Billing Facility NPI
put_hcfa(61, 51, 10, $claim->billingFacilityNPI());
put_hcfa(61, 50, 10, $claim->billingFacilityNPI());

// 33b. Billing Facility Other ID
// Note that Medicare does NOT want this any more.
Expand All @@ -726,7 +726,9 @@ function gen_hcfa_1500_page($pid, $encounter, &$log, &$claim) {

// Put an extra line here for compatibility with old hcfa text generated form
put_hcfa(62, 1, 1, ' ');

// put a couple more in so that multiple claims correctly print through the text file download
put_hcfa(63, 1, 1, ' ');
put_hcfa(64, 1, 1, ' ');
return;
}
?>

0 comments on commit ff83d96

Please sign in to comment.