diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 176a42b11c62..b53e7e85f479 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2415,7 +2415,7 @@ $LANG = array( 'online_payment_surcharge' => 'Online Payment Surcharge', 'gateway_fees' => 'Gateway Fees', 'fees_disabled' => 'Fees are disabled', - 'gateway_fees_help' => 'Automatically add an online payment surcharge.', + 'gateway_fees_help' => 'Automatically add an online payment surcharge [partial payments are not supported].', ); diff --git a/resources/views/accounts/payments.blade.php b/resources/views/accounts/payments.blade.php index 6f9997926508..66d5d80cf171 100644 --- a/resources/views/accounts/payments.blade.php +++ b/resources/views/accounts/payments.blade.php @@ -168,7 +168,7 @@
- @if (!$account->invoice_item_taxes && $account->invoice_taxes && count($taxRates)) + @if (false && !$account->invoice_item_taxes && $account->invoice_taxes && count($taxRates))
{{ trans('texts.fees_tax_help') }}
@endif @@ -325,7 +325,7 @@ total += subtotal * taxRate2 / 100; } - if (total > 0) { + if (total >= 0) { var str = "{{ trans('texts.fees_sample') }}"; } else { var str = "{{ trans('texts.discount_sample') }}";