2016-06-20 16:14:43 +02:00
|
|
|
@extends('payments.bank_transfer')
|
|
|
|
|
|
|
|
@section('head')
|
|
|
|
@parent
|
|
|
|
|
|
|
|
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
Stripe.setPublishableKey('{{ $accountGateway->getPublishableStripeKey() }}');
|
|
|
|
$(function() {
|
|
|
|
var countries = {!! Cache::get('countries')->pluck('iso_3166_2','id') !!};
|
|
|
|
$('.payment-form').submit(function(event) {
|
|
|
|
if($('[name=plaidAccountId]').length)return;
|
|
|
|
|
|
|
|
var $form = $(this);
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
account_holder_name: $('#account_holder_name').val(),
|
|
|
|
account_holder_type: $('[name=account_holder_type]:checked').val(),
|
|
|
|
currency: $("#currency_id").val(),
|
|
|
|
country: countries[$("#country_id").val()],
|
|
|
|
routing_number: $('#routing_number').val().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''),
|
|
|
|
account_number: $('#account_number').val().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '')
|
|
|
|
};
|
|
|
|
|
|
|
|
// Validate the account details
|
|
|
|
if (!data.account_holder_type) {
|
|
|
|
$('#js-error-message').html('{{ trans('texts.missing_account_holder_type') }}').fadeIn();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!data.account_holder_name) {
|
|
|
|
$('#js-error-message').html('{{ trans('texts.missing_account_holder_name') }}').fadeIn();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!data.routing_number || !Stripe.bankAccount.validateRoutingNumber(data.routing_number, data.country)) {
|
|
|
|
$('#js-error-message').html('{{ trans('texts.invalid_routing_number') }}').fadeIn();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (data.account_number != $('#confirm_account_number').val().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '')) {
|
|
|
|
$('#js-error-message').html('{{ trans('texts.account_number_mismatch') }}').fadeIn();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!data.account_number || !Stripe.bankAccount.validateAccountNumber(data.account_number, data.country)) {
|
|
|
|
$('#js-error-message').html('{{ trans('texts.invalid_account_number') }}').fadeIn();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable the submit button to prevent repeated clicks
|
|
|
|
$form.find('button').prop('disabled', true);
|
|
|
|
$('#js-error-message').hide();
|
|
|
|
|
|
|
|
Stripe.bankAccount.createToken(data, stripeResponseHandler);
|
|
|
|
|
|
|
|
// Prevent the form from submitting with the default action
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
@if ($accountGateway->getPlaidEnabled())
|
|
|
|
var plaidHandler = Plaid.create({
|
|
|
|
selectAccount: true,
|
|
|
|
env: '{{ $accountGateway->getPlaidEnvironment() }}',
|
|
|
|
clientName: {!! json_encode($account->getDisplayName()) !!},
|
|
|
|
key: '{{ $accountGateway->getPlaidPublicKey() }}',
|
|
|
|
product: 'auth',
|
|
|
|
onSuccess: plaidSuccessHandler,
|
|
|
|
onExit : function(){$('#secured_by_plaid').hide()}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#plaid_link_button').click(function(){plaidHandler.open();$('#secured_by_plaid').fadeIn()});
|
|
|
|
$('#plaid_unlink').click(function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
$('#manual_container').fadeIn();
|
|
|
|
$('#plaid_linked').hide();
|
|
|
|
$('#plaid_link_button').show();
|
|
|
|
$('#pay_now_button').hide();
|
|
|
|
$('#add_account_button').show();
|
|
|
|
$('[name=plaidPublicToken]').remove();
|
|
|
|
$('[name=plaidAccountId]').remove();
|
|
|
|
$('[name=account_holder_type],#account_holder_name').attr('required','required');
|
|
|
|
})
|
|
|
|
@endif
|
|
|
|
});
|
|
|
|
|
|
|
|
function stripeResponseHandler(status, response) {
|
|
|
|
var $form = $('.payment-form');
|
|
|
|
|
|
|
|
if (response.error) {
|
|
|
|
// Show the errors on the form
|
|
|
|
var error = response.error.message;
|
|
|
|
if(response.error.param == 'bank_account[country]') {
|
|
|
|
error = "{{trans('texts.country_not_supported')}}";
|
|
|
|
}
|
|
|
|
$form.find('button').prop('disabled', false);
|
|
|
|
$('#js-error-message').html(error).fadeIn();
|
|
|
|
} else {
|
|
|
|
// response contains id and card, which contains additional card details
|
|
|
|
var token = response.id;
|
|
|
|
// Insert the token into the form so it gets submitted to the server
|
|
|
|
$form.append($('<input type="hidden" name="sourceToken"/>').val(token));
|
|
|
|
// and submit
|
|
|
|
$form.get(0).submit();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function plaidSuccessHandler(public_token, metadata) {
|
|
|
|
$('#secured_by_plaid').hide()
|
|
|
|
var $form = $('.payment-form');
|
|
|
|
|
|
|
|
$form.append($('<input type="hidden" name="plaidPublicToken"/>').val(public_token));
|
|
|
|
$form.append($('<input type="hidden" name="plaidAccountId"/>').val(metadata.account_id));
|
|
|
|
$('#plaid_linked_status').text('{{ trans('texts.plaid_linked_status') }}'.replace(':bank', metadata.institution.name));
|
|
|
|
$('#manual_container').fadeOut();
|
|
|
|
$('#plaid_linked').show();
|
|
|
|
$('#plaid_link_button').hide();
|
|
|
|
$('[name=account_holder_type],#account_holder_name').removeAttr('required');
|
|
|
|
|
|
|
|
|
|
|
|
var payNowBtn = $('#pay_now_button');
|
|
|
|
if(payNowBtn.length) {
|
|
|
|
payNowBtn.show();
|
|
|
|
$('#add_account_button').hide();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
@section('payment_details')
|
|
|
|
|
2016-06-26 18:38:36 +02:00
|
|
|
{!! Former::open($url)
|
|
|
|
->autocomplete('on')
|
|
|
|
->addClass('payment-form')
|
|
|
|
->id('payment-form')
|
|
|
|
->rules(array(
|
|
|
|
'country_id' => 'required',
|
|
|
|
'currency_id' => 'required',
|
|
|
|
'account_number' => 'required',
|
|
|
|
'routing_number' => 'required',
|
|
|
|
'account_holder_name' => 'required',
|
|
|
|
'account_holder_type' => 'required',
|
|
|
|
'authorize_ach' => 'required',
|
|
|
|
)) !!}
|
|
|
|
|
|
|
|
{!! Former::populateField('account_holder_type', 'individual') !!}
|
|
|
|
{!! Former::populateField('country_id', $client->country_id) !!}
|
|
|
|
{!! Former::populateField('currency_id', $client->getCurrencyCode()) !!}
|
|
|
|
|
|
|
|
@if (Utils::isNinjaDev())
|
|
|
|
{!! Former::populateField('account_holder_name', 'Test Client') !!}
|
|
|
|
<script>
|
|
|
|
$(function() {
|
|
|
|
$('#routing_number').val('110000000');
|
|
|
|
$('#account_number').val('000123456789');
|
|
|
|
$('#confirm_account_number').val('000123456789');
|
|
|
|
$('#authorize_ach').prop('checked', true);
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
@if ($accountGateway->getPlaidEnabled())
|
|
|
|
<div id="plaid_container">
|
|
|
|
<a class="btn btn-default btn-lg" id="plaid_link_button">
|
|
|
|
<img src="{{ URL::to('images/plaid-logo.svg') }}">
|
|
|
|
<img src="{{ URL::to('images/plaid-logowhite.svg') }}" class="hoverimg">
|
|
|
|
{{ trans('texts.link_with_plaid') }}
|
|
|
|
</a>
|
|
|
|
<div id="plaid_linked">
|
|
|
|
<div id="plaid_linked_status"></div>
|
|
|
|
<a href="#" id="plaid_unlink">{{ trans('texts.unlink') }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<div id="manual_container">
|
|
|
|
@if($accountGateway->getPlaidEnabled())
|
|
|
|
<div id="plaid_or"><span>{{ trans('texts.or') }}</span></div>
|
|
|
|
<h4>{{ trans('texts.link_manually') }}</h4>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<p>{{ trans('texts.ach_verification_delay_help') }}</p><br/>
|
|
|
|
|
|
|
|
|
|
|
|
{!! Former::radios('account_holder_type')->radios(array(
|
|
|
|
trans('texts.individual_account') => array('value' => 'individual'),
|
|
|
|
trans('texts.company_account') => array('value' => 'company'),
|
|
|
|
))->inline()->label(trans('texts.account_holder_type')); !!}
|
|
|
|
|
|
|
|
{!! Former::text('account_holder_name')
|
|
|
|
->label(trans('texts.account_holder_name')) !!}
|
|
|
|
|
|
|
|
{!! Former::select('country_id')
|
|
|
|
->label(trans('texts.country_id'))
|
|
|
|
->addOption('','')
|
|
|
|
->fromQuery(Cache::get('countries'), 'name', 'id')
|
|
|
|
->addGroupClass('country-select') !!}
|
|
|
|
|
|
|
|
{!! Former::select('currency_id')
|
|
|
|
->label(trans('texts.currency_id'))
|
|
|
|
->addOption('','')
|
|
|
|
->fromQuery(Cache::get('currencies'), 'name', 'code')
|
|
|
|
->addGroupClass('currency-select') !!}
|
|
|
|
|
|
|
|
{!! Former::text('')
|
|
|
|
->id('routing_number')
|
|
|
|
->label(trans('texts.routing_number')) !!}
|
|
|
|
|
|
|
|
<div class="form-group" style="margin-top:-15px">
|
|
|
|
<div class="col-md-8 col-md-offset-4">
|
|
|
|
<div id="bank_name"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{!! Former::text('')
|
|
|
|
->id('account_number')
|
|
|
|
->label(trans('texts.account_number')) !!}
|
|
|
|
{!! Former::text('')
|
|
|
|
->id('confirm_account_number')
|
|
|
|
->label(trans('texts.confirm_account_number')) !!}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{!! Former::checkbox('authorize_ach')
|
|
|
|
->text(trans('texts.ach_authorization', ['company'=>$account->getDisplayName(), 'email' => $account->work_email]))
|
2017-01-09 16:01:51 +01:00
|
|
|
->label(' ')
|
|
|
|
->value(1) !!}
|
2016-06-20 16:14:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div id="js-error-message" style="display:none" class="alert alert-danger"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
|
|
|
<div class="col-md-8 col-md-offset-4">
|
|
|
|
|
|
|
|
{!! Button::success(strtoupper(trans('texts.add_account')))
|
|
|
|
->submit()
|
|
|
|
->withAttributes(['id'=>'add_account_button'])
|
|
|
|
->large() !!}
|
|
|
|
|
2016-06-26 18:38:36 +02:00
|
|
|
@if ($accountGateway->getPlaidEnabled() && !empty($amount))
|
2016-10-20 16:17:47 +02:00
|
|
|
{!! Button::success(strtoupper(trans('texts.pay_now') . ' - ' . $account->formatMoney($amount, $client, CURRENCY_DECORATOR_CODE) ))
|
2016-06-20 16:14:43 +02:00
|
|
|
->submit()
|
|
|
|
->withAttributes(['style'=>'display:none', 'id'=>'pay_now_button'])
|
|
|
|
->large() !!}
|
|
|
|
@endif
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2016-06-26 18:38:36 +02:00
|
|
|
{!! Former::close() !!}
|
|
|
|
|
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
var routingNumberCache = {};
|
|
|
|
$('#routing_number, #country').on('change keypress keyup keydown paste', function(){setTimeout(function () {
|
|
|
|
var routingNumber = $('#routing_number').val().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
|
|
|
|
if (routingNumber.length != 9 || $("#country_id").val() != 840 || routingNumberCache[routingNumber] === false) {
|
|
|
|
$('#bank_name').hide();
|
|
|
|
} else if (routingNumberCache[routingNumber]) {
|
|
|
|
$('#bank_name').empty().append(routingNumberCache[routingNumber]).show();
|
|
|
|
} else {
|
|
|
|
routingNumberCache[routingNumber] = false;
|
|
|
|
$('#bank_name').hide();
|
|
|
|
$.ajax({
|
|
|
|
url:"{{ URL::to('/bank') }}/" + routingNumber,
|
|
|
|
success:function(data) {
|
|
|
|
var els = $().add(document.createTextNode(data.name + ", " + data.city + ", " + data.state));
|
|
|
|
routingNumberCache[routingNumber] = els;
|
|
|
|
|
|
|
|
// Still the same number?
|
|
|
|
if (routingNumber == $('#routing_number').val().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '')) {
|
|
|
|
$('#bank_name').empty().append(els).show();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error:function(xhr) {
|
|
|
|
if (xhr.status == 404) {
|
|
|
|
var els = $(document.createTextNode('{{trans('texts.unknown_bank')}}'));
|
|
|
|
routingNumberCache[routingNumber] = els;
|
|
|
|
|
|
|
|
// Still the same number?
|
|
|
|
if (routingNumber == $('#routing_number').val().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '')) {
|
|
|
|
$('#bank_name').empty().append(els).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},10)})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
@stop
|