Skip to content

Commit

Permalink
fixes to prior commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Oct 7, 2020
1 parent 3755005 commit 878ad22
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions interface/billing/print_daysheet_report_num1.php
Original file line number Diff line number Diff line change
Expand Up @@ -1794,12 +1794,12 @@
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Total Charges") . ': ' . " %1\$.2f ", text($user_info['fee'][$i]) ?>
<?php printf(xlt("Total Charges") . ': ' . "%1\$.2f", text($user_info['fee'][$i])); ?>
</td>
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Total Payments") . ': ' . "(%1\$.2f)", text($user_info['inspay'][$i] + $user_info['patpay'][$i]) ?>
<?php printf(xlt("Total Payments") . ': ' . "(%1\$.2f)", text($user_info['inspay'][$i] + $user_info['patpay'][$i])); ?>
</td>
<td class='text' width='25'>
<br />
Expand All @@ -1814,11 +1814,11 @@
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Total Adj") . '.: ' . "(%1\$.2f)", text($user_info['patadj'][$i] + $user_info['insadj'][$i]); ?>
<?php printf(xlt("Total Adj") . '.: ' . "(%1\$.2f)", text($user_info['patadj'][$i] + $user_info['insadj'][$i])); ?>
</td>
<td width='125'><span class='text'></span></td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Refund") . ': ' . "(%1\$.2f)", text($user_info['patref'][$i] + $user_info['insref'][$i]) ?>
<?php printf(xlt("Refund") . ': ' . "(%1\$.2f)", text($user_info['patref'][$i] + $user_info['insref'][$i])); ?>
</td>
<td class='text' width='25'>
<br />
Expand Down Expand Up @@ -1855,7 +1855,7 @@
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Actual Receipts") . ': ' . "(%1\$.2f)", text($user_info['patref'][$i] + $user_info['insref'][$i] + $user_info['inspay'][$i] + $user_info['patpay'][$i]) ?>
<?php printf(xlt("Actual Receipts") . ': ' . "(%1\$.2f)", text($user_info['patref'][$i] + $user_info['insref'][$i] + $user_info['inspay'][$i] + $user_info['patpay'][$i])); ?>
</td>
<td class='text' width='25'>
<br />
Expand Down Expand Up @@ -1927,12 +1927,12 @@
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Total Charges") . ': ' . " %1\$.2f ", text($provider_info['fee'][$i]); ?>
<?php printf(xlt("Total Charges") . ': ' . " %1\$.2f ", text($provider_info['fee'][$i])); ?>
</td>
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Total Payments") . ': ' . "(%1\$.2f)", text($provider_info['inspay'][$i] + $provider_info['patpay'][$i]) ?>
<?php printf(xlt("Total Payments") . ': ' . "(%1\$.2f)", text($provider_info['inspay'][$i] + $provider_info['patpay'][$i])); ?>
</td>
<td class='text' width='25'>
<br />
Expand All @@ -1947,12 +1947,12 @@
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Total Adj") . '.: ' . "(%1\$.2f)", text($provider_info['patadj'][$i] + $provider_info['insadj'][$i]); ?>
<?php printf(xlt("Total Adj") . '.: ' . "(%1\$.2f)", text($provider_info['patadj'][$i] + $provider_info['insadj'][$i])); ?>
</td>
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Refund") . ': ' . "(%1\$.2f)", text($provider_info['patref'][$i] + $provider_info['insref'][$i]); ?>
<?php printf(xlt("Refund") . ': ' . "(%1\$.2f)", text($provider_info['patref'][$i] + $provider_info['insref'][$i])); ?>
</td>
<td class='text' width='25'>
<br />
Expand Down Expand Up @@ -1990,7 +1990,7 @@
<td class='text' width='125'>
</td>
<td class='text font-weight-bold' width='250'>
<?php echo xlt("Actual Receipts") . ': ' . "(%1\$.2f)", text($provider_info['patref'][$i] + $provider_info['insref'][$i] + $provider_info['inspay'][$i] + $provider_info['patpay'][$i]); ?>
<?php printf(xlt("Actual Receipts") . ': ' . "(%1\$.2f)", text($provider_info['patref'][$i] + $provider_info['insref'][$i] + $provider_info['inspay'][$i] + $provider_info['patpay'][$i])); ?>
</td>
<td class='text' width='25'>
</td>
Expand Down

0 comments on commit 878ad22

Please sign in to comment.