Merge pull request #817 from twetech/remove-gateway-fees-from-client-invoice

Remove Stripe fee from main invoice display
This commit is contained in:
Johnny 2023-11-21 17:00:34 -05:00 committed by GitHub
commit be10ac0b46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -303,12 +303,6 @@ $sql_invoice_items = mysqli_query($mysqli, "SELECT * FROM invoice_items WHERE it
<td class="text-right"><strong><?php echo numfmt_format_currency($currency_format, $balance, $invoice_currency_code); ?></strong></td>
</tr>
</tbody>
<?php if (isset($stripe_fee)) {?>
<tr class="border-bottom">
<td>Gateway Fee:</td>
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $stripe_fee, $invoice_currency_code); ?></td>
</tr>
<?php } ?>
</table>
</div>
</div>