Tweak gateway fees texts/UI

This commit is contained in:
Hillel Coren 2017-03-24 17:14:39 +03:00
parent b680891929
commit db55725890
2 changed files with 2 additions and 2 deletions

View File

@ -2416,7 +2416,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/discount.',
'gateway' => 'Gateway',
'gateway_fee_change_warning' => 'If there are unpaid invoices with fees they need to be updated manually.',
'fees_surcharge_help' => 'Customize surcharge :link.',

View File

@ -18,13 +18,13 @@
{!! Former::select('token_billing_type_id')
->options($tokenBillingOptions)
->help(trans('texts.token_billing_help')) !!}
{!! Former::inline_radios('auto_bill_on_due_date')
->label(trans('texts.auto_bill'))
->radios([
trans('texts.on_send_date') => ['value'=>0, 'name'=>'auto_bill_on_due_date'],
trans('texts.on_due_date') => ['value'=>1, 'name'=>'auto_bill_on_due_date'],
])->help(trans('texts.auto_bill_ach_date_help')) !!}
<br/>
{!! Former::checkbox('gateway_fee_location')
->onchange('onGatewayFeeChange()')