Skip to content

Commit

Permalink
renamed Billing to Coding in some places for non-US sites
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsetsystems committed Jul 3, 2005
1 parent 4c6dc68 commit 0d035d5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion interface/patient_file/encounter/coding.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body <?echo $bottom_bg_line;?> topmargin=0 rightmargin=0 leftmargin=2 bottommargin=0 marginwidth=2 marginheight=0>

<dl>
<dt><span href="coding.php" class="title">Coding/Billing</span></dt>
<dt><span href="coding.php" class="title">Coding</span></dt>
<dd><a class="text" href="superbill_codes.php" target="Main">Superbill</a></dd>

<? foreach ($code_types as $key => $value) { ?>
Expand Down
2 changes: 1 addition & 1 deletion interface/patient_file/encounter/diagnosis.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<td valign=top>

<dl>
<dt><a href="diagnosis_full.php" target="Main"><span class=title>Billing</span><font class=more><?echo $tmore;?></font></a>
<dt><a href="diagnosis_full.php" target="Main"><span class=title><? echo ($GLOBALS['phone_country_code'] == '1') ? 'Billing' : 'Coding' ?></span><font class=more><?echo $tmore;?></font></a>
<?
if( !empty( $_GET["back"] ) || !empty( $_POST["back"] ) ){
print "&nbsp;<a href=\"superbill_codes.php\" target=\"Main\"><font class=more>$tback</font></a>";
Expand Down
13 changes: 5 additions & 8 deletions interface/patient_file/encounter/new_form.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
<?
include_once("../../globals.php");

?>

<html>
<head>


<link rel=stylesheet href="<?echo $css_header;?>" type="text/css">


</head>
<body <?echo $top_bg_line;?> topmargin=0 rightmargin=0 leftmargin=2 bottommargin=0 marginwidth=2 marginheight=0>
<!-- outdated
Expand All @@ -27,8 +21,11 @@
include_once("$srcdir/registry.inc");
$reg = getRegistered ();
if ($reg != false)
foreach ($reg as $entry)
echo '<dd><a href="'.$rootdir.'/patient_file/encounter/load_form.php?formname='.urlencode($entry['directory']).'" class="link" target=Main>'.$entry['name'].'</a></dd>';
foreach ($reg as $entry) {
echo '<dd><a href="'.$rootdir.'/patient_file/encounter/load_form.php?formname='.urlencode($entry['directory']).'" class="link" target=Main>';
echo ($entry['name'] == 'Fee Sheet' && $GLOBALS['phone_country_code'] != '1') ? 'Coding Sheet' : $entry['name'];
echo '</a></dd>';
}
?>
</dl>

Expand Down
2 changes: 1 addition & 1 deletion interface/patient_file/history/encounters.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<tr>
<td><span class=bold>Date</span></td>
<td><span class=bold>Reason</span></td>
<td><span class=bold>Billing</span></td>
<td><span class=bold><? echo ($GLOBALS['phone_country_code'] == '1') ? 'Billing' : 'Coding' ?></span></td>
<td><span class=bold>Insurance</span></td>
</tr>

Expand Down

0 comments on commit 0d035d5

Please sign in to comment.