Skip to content

Commit

Permalink
make it more obvious when the insurance company name is blank
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsetsystems committed May 6, 2007
1 parent 21a9b80 commit 9de152e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion interface/patient_file/summary/demographics.php
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,15 @@ function imdeleted() {
?>
<tr>
<td valign='top'>
<span class='bold'><? xl('Primary Insurance Provider','e'); ?>:</span><br><span class='text'><?echo $result3{"provider_name"}?></span><br>
<span class='bold'><? xl('Primary Insurance Provider','e'); ?>:</span><br><span class='text'>
<?php
if (trim($result3['provider_name'])) {
echo $result3['provider_name'];
} else {
echo "<font color='red'><b>Unassigned</b></font>";
}
?>
</span><br>
<span class='text'><? xl('Policy Number','e'); ?>: <?echo $result3{"policy_number"}?><br>
Plan Name: <?=$result3{"plan_name"}?><br>
Group Number: <?echo $result3{"group_number"}?></span>
Expand Down

0 comments on commit 9de152e

Please sign in to comment.