mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
85 lines
3.2 KiB
PHP
85 lines
3.2 KiB
PHP
@extends('portal.ninja2020.layout.payments', ['gateway_title' => ctrans('texts.payment_type_credit_card'), 'card_title' => ''])
|
|
|
|
@section('gateway_head')
|
|
|
|
@endsection
|
|
|
|
@section('gateway_content')
|
|
<form action="{{ route('client.payments.response') }}" method="post" id="server_response">
|
|
@csrf
|
|
<input type="hidden" name="payment_hash" value="{{ $payment_hash }}">
|
|
<input type="hidden" name="company_gateway_id" value="{{ $gateway->company_gateway->id }}">
|
|
<input type="hidden" name="gateway_response" id="gateway_response">
|
|
<input type="hidden" name="gateway_type_id" id="gateway_type_id" value="{{ $gateway_type_id }}">
|
|
<input type="hidden" name="amount_with_fee" id="amount_with_fee" value="{{ $total['amount_with_fee'] }}"/>
|
|
</form>
|
|
|
|
<div class="alert alert-failure mb-4" hidden id="errors"></div>
|
|
|
|
<div id="paypal-button-container" class="paypal-button-container"></div>
|
|
|
|
@endsection
|
|
|
|
@section('gateway_footer')
|
|
@endsection
|
|
|
|
@push('footer')
|
|
|
|
<script src="https://www.paypal.com/sdk/js?client-id={!! $client_id !!}¤cy={!! $currency !!}&components=buttons,funding-eligibility&intent=capture&enable-funding={!! $funding_source !!}" data-partner-attribution-id="invoiceninja_SP_PPCP"></script>
|
|
<div id="paypal-button-container"></div>
|
|
<script>
|
|
|
|
//&buyer-country=US¤cy=USD&enable-funding=venmo
|
|
const fundingSource = "{!! $funding_source !!}";
|
|
const clientId = "{{ $client_id }}";
|
|
const orderId = "{!! $order_id !!}";
|
|
const environment = "{{ $gateway->company_gateway->getConfigField('testMode') ? 'sandbox' : 'production' }}";
|
|
|
|
paypal.Buttons({
|
|
env: environment,
|
|
fundingSource: fundingSource,
|
|
client: clientId,
|
|
createOrder: function(data, actions) {
|
|
return orderId;
|
|
},
|
|
onApprove: function(data, actions) {
|
|
|
|
var errorDetail = Array.isArray(data.details) && data.details[0];
|
|
if (errorDetail && ['INSTRUMENT_DECLINED', 'PAYER_ACTION_REQUIRED'].includes(errorDetail.issue)) {
|
|
return actions.restart();
|
|
}
|
|
|
|
document.getElementById("gateway_response").value =JSON.stringify( data );
|
|
document.getElementById("server_response").submit();
|
|
|
|
},
|
|
onCancel: function() {
|
|
window.location.href = "/client/invoices/";
|
|
},
|
|
onError: function(error) {
|
|
document.getElementById("gateway_response").value = error;
|
|
document.getElementById("server_response").submit();
|
|
},
|
|
onClick: function (){
|
|
|
|
if(fundingSource != 'card')
|
|
document.getElementById('paypal-button-container').hidden = true;
|
|
}
|
|
|
|
}).render('#paypal-button-container').catch(function(err) {
|
|
|
|
document.getElementById('errors').textContent = err;
|
|
document.getElementById('errors').hidden = false;
|
|
|
|
});
|
|
|
|
document.getElementById("server_response").addEventListener('submit', (e) => {
|
|
if (document.getElementById("server_response").classList.contains('is-submitting')) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
document.getElementById("server_response").classList.add('is-submitting');
|
|
});
|
|
|
|
</script>
|
|
@endpush |