Skip to content

Commit

Permalink
Removing the outdated CSS to let bootstrap align the report. (openemr…
Browse files Browse the repository at this point in the history
  • Loading branch information
juggernautsei committed Oct 29, 2022
1 parent 4878b1d commit 654b739
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions interface/reports/insurance_allocation_report.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
</div>

</td>
<td class='h-100' align='left' valign='middle'>
<td class='h-100' valign='middle'>
<table class='w-100 h-100' style='border-left:1px solid;'>
<tr>
<td>
Expand Down Expand Up @@ -177,11 +177,11 @@
<table class='table'>

<thead class='thead-light'>
<th align='left'> <?php echo xlt('Primary Insurance'); ?> </th>
<th align='right'> <?php echo xlt('Charges'); ?> </th>
<th align='right'> <?php echo xlt('Visits'); ?> </th>
<th align='right'> <?php echo xlt('Patients'); ?> </th>
<th align='right'> <?php echo xlt('Pt %'); ?> </th>
<th> <?php echo xlt('Primary Insurance'); ?> </th>
<th> <?php echo xlt('Charges'); ?> </th>
<th> <?php echo xlt('Visits'); ?> </th>
<th> <?php echo xlt('Patients'); ?> </th>
<th> <?php echo xlt('Pt %'); ?> </th>
</thead>
<tbody>
<?php
Expand Down Expand Up @@ -238,16 +238,16 @@
<td>
<?php echo text($key); ?>
</td>
<td align='right'>
<td>
<?php echo text(oeFormatMoney($val['charges'])); ?>
</td>
<td align='right'>
<td>
<?php echo text($val['visits']); ?>
</td>
<td align='right'>
<td>
<?php echo text($val['patients']); ?>
</td>
<td align='right'>
<td>
<?php printf("%.1f", $val['patients'] * 100 / $patcount) ?>
</td>
</tr>
Expand Down

0 comments on commit 654b739

Please sign in to comment.